code-puppy 0.0.206__tar.gz → 0.0.207__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {code_puppy-0.0.206 → code_puppy-0.0.207}/PKG-INFO +13 -3
- {code_puppy-0.0.206 → code_puppy-0.0.207}/README.md +12 -2
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/models.json +36 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/pyproject.toml +1 -1
- {code_puppy-0.0.206 → code_puppy-0.0.207}/.gitignore +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/LICENSE +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/__init__.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/__main__.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/agents/__init__.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/agents/agent_c_reviewer.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/agents/agent_code_puppy.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/agents/agent_code_reviewer.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/agents/agent_cpp_reviewer.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/agents/agent_creator_agent.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/agents/agent_golang_reviewer.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/agents/agent_javascript_reviewer.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/agents/agent_manager.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/agents/agent_python_reviewer.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/agents/agent_qa_expert.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/agents/agent_qa_kitten.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/agents/agent_security_auditor.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/agents/agent_typescript_reviewer.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/agents/base_agent.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/agents/json_agent.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/callbacks.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/command_line/__init__.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/command_line/attachments.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/command_line/command_handler.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/command_line/file_path_completion.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/command_line/load_context_completion.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/command_line/mcp/__init__.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/command_line/mcp/add_command.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/command_line/mcp/base.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/command_line/mcp/handler.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/command_line/mcp/help_command.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/command_line/mcp/install_command.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/command_line/mcp/list_command.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/command_line/mcp/logs_command.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/command_line/mcp/remove_command.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/command_line/mcp/restart_command.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/command_line/mcp/search_command.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/command_line/mcp/start_all_command.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/command_line/mcp/start_command.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/command_line/mcp/status_command.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/command_line/mcp/stop_all_command.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/command_line/mcp/stop_command.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/command_line/mcp/test_command.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/command_line/mcp/utils.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/command_line/mcp/wizard_utils.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/command_line/model_picker_completion.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/command_line/motd.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/command_line/prompt_toolkit_completion.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/command_line/utils.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/config.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/http_utils.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/main.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/mcp_/__init__.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/mcp_/async_lifecycle.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/mcp_/blocking_startup.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/mcp_/captured_stdio_server.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/mcp_/circuit_breaker.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/mcp_/config_wizard.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/mcp_/dashboard.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/mcp_/error_isolation.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/mcp_/examples/retry_example.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/mcp_/health_monitor.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/mcp_/managed_server.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/mcp_/manager.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/mcp_/registry.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/mcp_/retry_manager.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/mcp_/server_registry_catalog.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/mcp_/status_tracker.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/mcp_/system_tools.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/messaging/__init__.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/messaging/message_queue.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/messaging/queue_console.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/messaging/renderers.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/messaging/spinner/__init__.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/messaging/spinner/console_spinner.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/messaging/spinner/spinner_base.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/messaging/spinner/textual_spinner.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/model_factory.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/plugins/__init__.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/plugins/example_custom_command/register_callbacks.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/reopenable_async_client.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/round_robin_model.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/session_storage.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/status_display.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/summarization_agent.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/tools/__init__.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/tools/agent_tools.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/tools/browser/__init__.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/tools/browser/browser_control.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/tools/browser/browser_interactions.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/tools/browser/browser_locators.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/tools/browser/browser_navigation.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/tools/browser/browser_screenshot.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/tools/browser/browser_scripts.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/tools/browser/browser_workflows.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/tools/browser/camoufox_manager.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/tools/browser/vqa_agent.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/tools/command_runner.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/tools/common.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/tools/file_modifications.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/tools/file_operations.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/tools/tools_content.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/tui/__init__.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/tui/app.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/tui/components/__init__.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/tui/components/chat_view.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/tui/components/command_history_modal.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/tui/components/copy_button.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/tui/components/custom_widgets.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/tui/components/human_input_modal.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/tui/components/input_area.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/tui/components/sidebar.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/tui/components/status_bar.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/tui/messages.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/tui/models/__init__.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/tui/models/chat_message.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/tui/models/command_history.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/tui/models/enums.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/tui/screens/__init__.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/tui/screens/autosave_picker.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/tui/screens/help.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/tui/screens/mcp_install_wizard.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/tui/screens/settings.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/tui/screens/tools.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/tui_state.py +0 -0
- {code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/version_checker.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: code-puppy
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.207
|
4
4
|
Summary: Code generation agent
|
5
5
|
Project-URL: repository, https://github.com/mpfaffenberger/code_puppy
|
6
6
|
Project-URL: HomePage, https://github.com/mpfaffenberger/code_puppy
|
@@ -97,8 +97,7 @@ Code Puppy is an AI-powered code generation agent, designed to understand progra
|
|
97
97
|
export MODEL_NAME=gpt-5 # or gemini-2.5-flash-preview-05-20 as an example for Google Gemini models
|
98
98
|
export OPENAI_API_KEY=<your_openai_api_key> # or GEMINI_API_KEY for Google Gemini models
|
99
99
|
export CEREBRAS_API_KEY=<your_cerebras_api_key> # for Cerebras models
|
100
|
-
export
|
101
|
-
|
100
|
+
export SYN_API_KEY=<your https://dev.synthetic.new api key> # for Synthetic provider
|
102
101
|
# or ...
|
103
102
|
|
104
103
|
export AZURE_OPENAI_API_KEY=...
|
@@ -107,6 +106,17 @@ export AZURE_OPENAI_ENDPOINT=...
|
|
107
106
|
code-puppy --interactive
|
108
107
|
```
|
109
108
|
|
109
|
+
### Synthetic Provider
|
110
|
+
|
111
|
+
Code Puppy supports the **Synthetic provider**, which gives you access to various open-source models through a custom OpenAI-compatible endpoint. Set `SYN_API_KEY` to use models like:
|
112
|
+
|
113
|
+
- `synthetic-DeepSeek-V3.1-Terminus` (128K context)
|
114
|
+
- `synthetic-Kimi-K2-Instruct-0905` (256K context)
|
115
|
+
- `synthetic-Qwen3-Coder-480B-A35B-Instruct` (256K context)
|
116
|
+
- `synthetic-GLM-4.6` (200K context)
|
117
|
+
|
118
|
+
These models are available via `https://api.synthetic.new/openai/v1/` and provide high-quality coding assistance with generous context windows.
|
119
|
+
|
110
120
|
Run specific tasks or engage in interactive mode:
|
111
121
|
|
112
122
|
```bash
|
@@ -53,8 +53,7 @@ Code Puppy is an AI-powered code generation agent, designed to understand progra
|
|
53
53
|
export MODEL_NAME=gpt-5 # or gemini-2.5-flash-preview-05-20 as an example for Google Gemini models
|
54
54
|
export OPENAI_API_KEY=<your_openai_api_key> # or GEMINI_API_KEY for Google Gemini models
|
55
55
|
export CEREBRAS_API_KEY=<your_cerebras_api_key> # for Cerebras models
|
56
|
-
export
|
57
|
-
|
56
|
+
export SYN_API_KEY=<your https://dev.synthetic.new api key> # for Synthetic provider
|
58
57
|
# or ...
|
59
58
|
|
60
59
|
export AZURE_OPENAI_API_KEY=...
|
@@ -63,6 +62,17 @@ export AZURE_OPENAI_ENDPOINT=...
|
|
63
62
|
code-puppy --interactive
|
64
63
|
```
|
65
64
|
|
65
|
+
### Synthetic Provider
|
66
|
+
|
67
|
+
Code Puppy supports the **Synthetic provider**, which gives you access to various open-source models through a custom OpenAI-compatible endpoint. Set `SYN_API_KEY` to use models like:
|
68
|
+
|
69
|
+
- `synthetic-DeepSeek-V3.1-Terminus` (128K context)
|
70
|
+
- `synthetic-Kimi-K2-Instruct-0905` (256K context)
|
71
|
+
- `synthetic-Qwen3-Coder-480B-A35B-Instruct` (256K context)
|
72
|
+
- `synthetic-GLM-4.6` (200K context)
|
73
|
+
|
74
|
+
These models are available via `https://api.synthetic.new/openai/v1/` and provide high-quality coding assistance with generous context windows.
|
75
|
+
|
66
76
|
Run specific tasks or engage in interactive mode:
|
67
77
|
|
68
78
|
```bash
|
@@ -4,6 +4,42 @@
|
|
4
4
|
"name": "gpt-5",
|
5
5
|
"context_length": 400000
|
6
6
|
},
|
7
|
+
"synthetic-DeepSeek-V3.1-Terminus": {
|
8
|
+
"type": "custom_openai",
|
9
|
+
"name": "hf:deepseek-ai/DeepSeek-V3.1-Terminus",
|
10
|
+
"custom_endpoint": {
|
11
|
+
"url": "https://api.synthetic.new/openai/v1/",
|
12
|
+
"api_key": "$SYN_API_KEY"
|
13
|
+
},
|
14
|
+
"context_length": 128000
|
15
|
+
},
|
16
|
+
"synthetic-Kimi-K2-Instruct-0905": {
|
17
|
+
"type": "custom_openai",
|
18
|
+
"name": "hf:moonshotai/Kimi-K2-Instruct-0905",
|
19
|
+
"custom_endpoint": {
|
20
|
+
"url": "https://api.synthetic.new/openai/v1/",
|
21
|
+
"api_key": "$SYN_API_KEY"
|
22
|
+
},
|
23
|
+
"context_length": 256000
|
24
|
+
},
|
25
|
+
"synthetic-Qwen3-Coder-480B-A35B-Instruct": {
|
26
|
+
"type": "custom_openai",
|
27
|
+
"name": "hf:Qwen/Qwen3-Coder-480B-A35B-Instruct",
|
28
|
+
"custom_endpoint": {
|
29
|
+
"url": "https://api.synthetic.new/openai/v1/",
|
30
|
+
"api_key": "$SYN_API_KEY"
|
31
|
+
},
|
32
|
+
"context_length": 256000
|
33
|
+
},
|
34
|
+
"synthetic-GLM-4.6": {
|
35
|
+
"type": "custom_openai",
|
36
|
+
"name": "hf:zai-org/GLM-4.6",
|
37
|
+
"custom_endpoint": {
|
38
|
+
"url": "https://api.synthetic.new/openai/v1/",
|
39
|
+
"api_key": "$SYN_API_KEY"
|
40
|
+
},
|
41
|
+
"context_length": 200000
|
42
|
+
},
|
7
43
|
"Cerebras-Qwen3-Coder-480b": {
|
8
44
|
"type": "cerebras",
|
9
45
|
"name": "qwen-3-coder-480b",
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/command_line/load_context_completion.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/command_line/model_picker_completion.py
RENAMED
File without changes
|
File without changes
|
{code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/command_line/prompt_toolkit_completion.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{code_puppy-0.0.206 → code_puppy-0.0.207}/code_puppy/tui/components/command_history_modal.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|