code-puppy 0.0.205__tar.gz → 0.0.206__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.205 → code_puppy-0.0.206}/PKG-INFO +2 -2
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/config.py +22 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/http_utils.py +37 -6
- {code_puppy-0.0.205 → code_puppy-0.0.206}/pyproject.toml +2 -2
- {code_puppy-0.0.205 → code_puppy-0.0.206}/.gitignore +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/LICENSE +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/README.md +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/__init__.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/__main__.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/agents/__init__.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/agents/agent_c_reviewer.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/agents/agent_code_puppy.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/agents/agent_code_reviewer.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/agents/agent_cpp_reviewer.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/agents/agent_creator_agent.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/agents/agent_golang_reviewer.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/agents/agent_javascript_reviewer.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/agents/agent_manager.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/agents/agent_python_reviewer.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/agents/agent_qa_expert.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/agents/agent_qa_kitten.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/agents/agent_security_auditor.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/agents/agent_typescript_reviewer.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/agents/base_agent.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/agents/json_agent.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/callbacks.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/command_line/__init__.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/command_line/attachments.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/command_line/command_handler.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/command_line/file_path_completion.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/command_line/load_context_completion.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/command_line/mcp/__init__.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/command_line/mcp/add_command.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/command_line/mcp/base.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/command_line/mcp/handler.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/command_line/mcp/help_command.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/command_line/mcp/install_command.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/command_line/mcp/list_command.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/command_line/mcp/logs_command.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/command_line/mcp/remove_command.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/command_line/mcp/restart_command.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/command_line/mcp/search_command.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/command_line/mcp/start_all_command.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/command_line/mcp/start_command.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/command_line/mcp/status_command.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/command_line/mcp/stop_all_command.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/command_line/mcp/stop_command.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/command_line/mcp/test_command.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/command_line/mcp/utils.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/command_line/mcp/wizard_utils.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/command_line/model_picker_completion.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/command_line/motd.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/command_line/prompt_toolkit_completion.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/command_line/utils.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/main.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/mcp_/__init__.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/mcp_/async_lifecycle.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/mcp_/blocking_startup.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/mcp_/captured_stdio_server.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/mcp_/circuit_breaker.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/mcp_/config_wizard.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/mcp_/dashboard.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/mcp_/error_isolation.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/mcp_/examples/retry_example.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/mcp_/health_monitor.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/mcp_/managed_server.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/mcp_/manager.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/mcp_/registry.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/mcp_/retry_manager.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/mcp_/server_registry_catalog.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/mcp_/status_tracker.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/mcp_/system_tools.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/messaging/__init__.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/messaging/message_queue.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/messaging/queue_console.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/messaging/renderers.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/messaging/spinner/__init__.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/messaging/spinner/console_spinner.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/messaging/spinner/spinner_base.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/messaging/spinner/textual_spinner.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/model_factory.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/models.json +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/plugins/__init__.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/plugins/example_custom_command/register_callbacks.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/reopenable_async_client.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/round_robin_model.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/session_storage.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/status_display.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/summarization_agent.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/tools/__init__.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/tools/agent_tools.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/tools/browser/__init__.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/tools/browser/browser_control.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/tools/browser/browser_interactions.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/tools/browser/browser_locators.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/tools/browser/browser_navigation.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/tools/browser/browser_screenshot.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/tools/browser/browser_scripts.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/tools/browser/browser_workflows.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/tools/browser/camoufox_manager.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/tools/browser/vqa_agent.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/tools/command_runner.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/tools/common.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/tools/file_modifications.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/tools/file_operations.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/tools/tools_content.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/tui/__init__.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/tui/app.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/tui/components/__init__.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/tui/components/chat_view.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/tui/components/command_history_modal.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/tui/components/copy_button.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/tui/components/custom_widgets.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/tui/components/human_input_modal.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/tui/components/input_area.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/tui/components/sidebar.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/tui/components/status_bar.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/tui/messages.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/tui/models/__init__.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/tui/models/chat_message.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/tui/models/command_history.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/tui/models/enums.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/tui/screens/__init__.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/tui/screens/autosave_picker.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/tui/screens/help.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/tui/screens/mcp_install_wizard.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/tui/screens/settings.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/tui/screens/tools.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/code_puppy/tui_state.py +0 -0
- {code_puppy-0.0.205 → code_puppy-0.0.206}/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.206
|
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
|
@@ -19,7 +19,7 @@ Requires-Dist: bs4>=0.0.2
|
|
19
19
|
Requires-Dist: camoufox>=0.4.11
|
20
20
|
Requires-Dist: fastapi>=0.110.0
|
21
21
|
Requires-Dist: httpx-limiter>=0.3.0
|
22
|
-
Requires-Dist: httpx>=0.24.1
|
22
|
+
Requires-Dist: httpx[http2]>=0.24.1
|
23
23
|
Requires-Dist: json-repair>=0.46.2
|
24
24
|
Requires-Dist: logfire>=0.7.1
|
25
25
|
Requires-Dist: openai>=1.99.1
|
@@ -132,6 +132,7 @@ def get_config_keys():
|
|
132
132
|
"openai_reasoning_effort",
|
133
133
|
"auto_save_session",
|
134
134
|
"max_saved_sessions",
|
135
|
+
"http2",
|
135
136
|
]
|
136
137
|
config = configparser.ConfigParser()
|
137
138
|
config.read(CONFIG_FILE)
|
@@ -589,6 +590,27 @@ def get_compaction_strategy() -> str:
|
|
589
590
|
return "truncation"
|
590
591
|
|
591
592
|
|
593
|
+
def get_http2() -> bool:
|
594
|
+
"""
|
595
|
+
Get the http2 configuration value.
|
596
|
+
Returns False if not set (default).
|
597
|
+
"""
|
598
|
+
val = get_value("http2")
|
599
|
+
if val is None:
|
600
|
+
return False
|
601
|
+
return str(val).lower() in ("1", "true", "yes", "on")
|
602
|
+
|
603
|
+
|
604
|
+
def set_http2(enabled: bool) -> None:
|
605
|
+
"""
|
606
|
+
Sets the http2 configuration value.
|
607
|
+
|
608
|
+
Args:
|
609
|
+
enabled: Whether to enable HTTP/2 for httpx clients
|
610
|
+
"""
|
611
|
+
set_config_value("http2", "true" if enabled else "false")
|
612
|
+
|
613
|
+
|
592
614
|
def get_message_limit(default: int = 100) -> int:
|
593
615
|
"""
|
594
616
|
Returns the user-configured message/request limit for the agent.
|
@@ -12,6 +12,8 @@ import httpx
|
|
12
12
|
import requests
|
13
13
|
from tenacity import stop_after_attempt, wait_exponential
|
14
14
|
|
15
|
+
from code_puppy.config import get_http2
|
16
|
+
|
15
17
|
try:
|
16
18
|
from pydantic_ai.retries import (
|
17
19
|
AsyncTenacityTransport,
|
@@ -55,6 +57,9 @@ def create_client(
|
|
55
57
|
if verify is None:
|
56
58
|
verify = get_cert_bundle_path()
|
57
59
|
|
60
|
+
# Check if HTTP/2 is enabled in config
|
61
|
+
http2_enabled = get_http2()
|
62
|
+
|
58
63
|
# If retry components are available, create a client with retry transport
|
59
64
|
if TenacityTransport and RetryConfig and wait_retry_after:
|
60
65
|
|
@@ -81,11 +86,17 @@ def create_client(
|
|
81
86
|
)
|
82
87
|
|
83
88
|
return httpx.Client(
|
84
|
-
transport=transport,
|
89
|
+
transport=transport,
|
90
|
+
verify=verify,
|
91
|
+
headers=headers or {},
|
92
|
+
timeout=timeout,
|
93
|
+
http2=http2_enabled,
|
85
94
|
)
|
86
95
|
else:
|
87
96
|
# Fallback to regular client if retry components are not available
|
88
|
-
return httpx.Client(
|
97
|
+
return httpx.Client(
|
98
|
+
verify=verify, headers=headers or {}, timeout=timeout, http2=http2_enabled
|
99
|
+
)
|
89
100
|
|
90
101
|
|
91
102
|
def create_async_client(
|
@@ -97,6 +108,9 @@ def create_async_client(
|
|
97
108
|
if verify is None:
|
98
109
|
verify = get_cert_bundle_path()
|
99
110
|
|
111
|
+
# Check if HTTP/2 is enabled in config
|
112
|
+
http2_enabled = get_http2()
|
113
|
+
|
100
114
|
# If retry components are available, create a client with retry transport
|
101
115
|
if AsyncTenacityTransport and RetryConfig and wait_retry_after:
|
102
116
|
|
@@ -120,11 +134,17 @@ def create_async_client(
|
|
120
134
|
)
|
121
135
|
|
122
136
|
return httpx.AsyncClient(
|
123
|
-
transport=transport,
|
137
|
+
transport=transport,
|
138
|
+
verify=verify,
|
139
|
+
headers=headers or {},
|
140
|
+
timeout=timeout,
|
141
|
+
http2=http2_enabled,
|
124
142
|
)
|
125
143
|
else:
|
126
144
|
# Fallback to regular client if retry components are not available
|
127
|
-
return httpx.AsyncClient(
|
145
|
+
return httpx.AsyncClient(
|
146
|
+
verify=verify, headers=headers or {}, timeout=timeout, http2=http2_enabled
|
147
|
+
)
|
128
148
|
|
129
149
|
|
130
150
|
def create_requests_session(
|
@@ -176,6 +196,9 @@ def create_reopenable_async_client(
|
|
176
196
|
if verify is None:
|
177
197
|
verify = get_cert_bundle_path()
|
178
198
|
|
199
|
+
# Check if HTTP/2 is enabled in config
|
200
|
+
http2_enabled = get_http2()
|
201
|
+
|
179
202
|
# If retry components are available, create a client with retry transport
|
180
203
|
if AsyncTenacityTransport and RetryConfig and wait_retry_after:
|
181
204
|
|
@@ -207,6 +230,7 @@ def create_reopenable_async_client(
|
|
207
230
|
verify=verify,
|
208
231
|
headers=headers or {},
|
209
232
|
timeout=timeout,
|
233
|
+
http2=http2_enabled,
|
210
234
|
)
|
211
235
|
else:
|
212
236
|
# Fallback to regular AsyncClient if ReopenableAsyncClient is not available
|
@@ -215,17 +239,24 @@ def create_reopenable_async_client(
|
|
215
239
|
verify=verify,
|
216
240
|
headers=headers or {},
|
217
241
|
timeout=timeout,
|
242
|
+
http2=http2_enabled,
|
218
243
|
)
|
219
244
|
else:
|
220
245
|
# Fallback to regular clients if retry components are not available
|
221
246
|
if ReopenableAsyncClient is not None:
|
222
247
|
return ReopenableAsyncClient(
|
223
|
-
verify=verify,
|
248
|
+
verify=verify,
|
249
|
+
headers=headers or {},
|
250
|
+
timeout=timeout,
|
251
|
+
http2=http2_enabled,
|
224
252
|
)
|
225
253
|
else:
|
226
254
|
# Fallback to regular AsyncClient if ReopenableAsyncClient is not available
|
227
255
|
return httpx.AsyncClient(
|
228
|
-
verify=verify,
|
256
|
+
verify=verify,
|
257
|
+
headers=headers or {},
|
258
|
+
timeout=timeout,
|
259
|
+
http2=http2_enabled,
|
229
260
|
)
|
230
261
|
|
231
262
|
|
@@ -4,13 +4,13 @@ build-backend = "hatchling.build"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "code-puppy"
|
7
|
-
version = "0.0.
|
7
|
+
version = "0.0.206"
|
8
8
|
description = "Code generation agent"
|
9
9
|
readme = "README.md"
|
10
10
|
requires-python = ">=3.11"
|
11
11
|
dependencies = [
|
12
12
|
"pydantic-ai==1.0.5",
|
13
|
-
"httpx>=0.24.1",
|
13
|
+
"httpx[http2]>=0.24.1",
|
14
14
|
"rich>=13.4.2",
|
15
15
|
"logfire>=0.7.1",
|
16
16
|
"pydantic>=2.4.0",
|
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.205 → code_puppy-0.0.206}/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.205 → code_puppy-0.0.206}/code_puppy/command_line/model_picker_completion.py
RENAMED
File without changes
|
File without changes
|
{code_puppy-0.0.205 → code_puppy-0.0.206}/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
|
{code_puppy-0.0.205 → code_puppy-0.0.206}/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
|