code-puppy 0.0.361__py3-none-any.whl → 0.0.373__py3-none-any.whl
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/agents/__init__.py +6 -0
- code_puppy/agents/agent_manager.py +223 -1
- code_puppy/agents/base_agent.py +2 -12
- code_puppy/chatgpt_codex_client.py +53 -0
- code_puppy/claude_cache_client.py +51 -13
- code_puppy/command_line/add_model_menu.py +13 -4
- code_puppy/command_line/agent_menu.py +662 -0
- code_puppy/command_line/core_commands.py +4 -112
- code_puppy/command_line/model_picker_completion.py +3 -20
- code_puppy/command_line/model_settings_menu.py +21 -3
- code_puppy/config.py +79 -8
- code_puppy/gemini_model.py +706 -0
- code_puppy/http_utils.py +6 -3
- code_puppy/model_factory.py +50 -16
- code_puppy/model_switching.py +63 -0
- code_puppy/model_utils.py +1 -52
- code_puppy/models.json +12 -12
- code_puppy/plugins/antigravity_oauth/antigravity_model.py +128 -165
- code_puppy/plugins/antigravity_oauth/register_callbacks.py +15 -8
- code_puppy/plugins/antigravity_oauth/transport.py +235 -45
- code_puppy/plugins/chatgpt_oauth/register_callbacks.py +2 -2
- code_puppy/plugins/claude_code_oauth/README.md +1 -1
- code_puppy/plugins/claude_code_oauth/SETUP.md +1 -1
- code_puppy/plugins/claude_code_oauth/register_callbacks.py +2 -30
- code_puppy/plugins/claude_code_oauth/utils.py +44 -10
- code_puppy/pydantic_patches.py +52 -0
- code_puppy/tools/agent_tools.py +3 -3
- code_puppy/tools/browser/__init__.py +1 -1
- code_puppy/tools/browser/browser_control.py +1 -1
- code_puppy/tools/browser/browser_interactions.py +1 -1
- code_puppy/tools/browser/browser_locators.py +1 -1
- code_puppy/tools/browser/{camoufox_manager.py → browser_manager.py} +29 -110
- code_puppy/tools/browser/browser_navigation.py +1 -1
- code_puppy/tools/browser/browser_screenshot.py +1 -1
- code_puppy/tools/browser/browser_scripts.py +1 -1
- {code_puppy-0.0.361.data → code_puppy-0.0.373.data}/data/code_puppy/models.json +12 -12
- {code_puppy-0.0.361.dist-info → code_puppy-0.0.373.dist-info}/METADATA +5 -6
- {code_puppy-0.0.361.dist-info → code_puppy-0.0.373.dist-info}/RECORD +42 -40
- code_puppy/prompts/codex_system_prompt.md +0 -310
- {code_puppy-0.0.361.data → code_puppy-0.0.373.data}/data/code_puppy/models_dev_api.json +0 -0
- {code_puppy-0.0.361.dist-info → code_puppy-0.0.373.dist-info}/WHEEL +0 -0
- {code_puppy-0.0.361.dist-info → code_puppy-0.0.373.dist-info}/entry_points.txt +0 -0
- {code_puppy-0.0.361.dist-info → code_puppy-0.0.373.dist-info}/licenses/LICENSE +0 -0
|
@@ -7,7 +7,7 @@ from pydantic_ai import RunContext
|
|
|
7
7
|
from code_puppy.messaging import emit_error, emit_info, emit_success
|
|
8
8
|
from code_puppy.tools.common import generate_group_id
|
|
9
9
|
|
|
10
|
-
from .
|
|
10
|
+
from .browser_manager import get_session_browser_manager
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
async def click_element(
|
|
@@ -7,7 +7,7 @@ from pydantic_ai import RunContext
|
|
|
7
7
|
from code_puppy.messaging import emit_info, emit_success
|
|
8
8
|
from code_puppy.tools.common import generate_group_id
|
|
9
9
|
|
|
10
|
-
from .
|
|
10
|
+
from .browser_manager import get_session_browser_manager
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
async def find_by_role(
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
"""
|
|
1
|
+
"""Playwright browser manager for browser automation.
|
|
2
2
|
|
|
3
3
|
Supports multiple simultaneous instances with unique profile directories.
|
|
4
4
|
"""
|
|
@@ -16,7 +16,7 @@ from code_puppy import config
|
|
|
16
16
|
from code_puppy.messaging import emit_info, emit_success, emit_warning
|
|
17
17
|
|
|
18
18
|
# Store active manager instances by session ID
|
|
19
|
-
_active_managers: dict[str, "
|
|
19
|
+
_active_managers: dict[str, "BrowserManager"] = {}
|
|
20
20
|
|
|
21
21
|
# Context variable for browser session - properly inherits through async tasks
|
|
22
22
|
# This allows parallel agent invocations to each have their own browser instance
|
|
@@ -49,28 +49,29 @@ def get_browser_session() -> Optional[str]:
|
|
|
49
49
|
return _browser_session_var.get()
|
|
50
50
|
|
|
51
51
|
|
|
52
|
-
def get_session_browser_manager() -> "
|
|
53
|
-
"""Get the
|
|
52
|
+
def get_session_browser_manager() -> "BrowserManager":
|
|
53
|
+
"""Get the BrowserManager for the current context's session.
|
|
54
54
|
|
|
55
55
|
This is the preferred way to get a browser manager in tool functions,
|
|
56
56
|
as it automatically uses the correct session ID for the current
|
|
57
57
|
agent context.
|
|
58
58
|
|
|
59
59
|
Returns:
|
|
60
|
-
A
|
|
60
|
+
A BrowserManager instance for the current session.
|
|
61
61
|
"""
|
|
62
62
|
session_id = get_browser_session()
|
|
63
|
-
return
|
|
63
|
+
return get_browser_manager(session_id)
|
|
64
64
|
|
|
65
65
|
|
|
66
66
|
# Flag to track if cleanup has already run
|
|
67
67
|
_cleanup_done: bool = False
|
|
68
68
|
|
|
69
69
|
|
|
70
|
-
class
|
|
71
|
-
"""Browser manager for
|
|
70
|
+
class BrowserManager:
|
|
71
|
+
"""Browser manager for Playwright-based browser automation.
|
|
72
72
|
|
|
73
73
|
Supports multiple simultaneous instances, each with its own profile directory.
|
|
74
|
+
Uses Chromium by default for maximum compatibility.
|
|
74
75
|
"""
|
|
75
76
|
|
|
76
77
|
_browser: Optional[Browser] = None
|
|
@@ -90,12 +91,6 @@ class CamoufoxManager:
|
|
|
90
91
|
# Override with BROWSER_HEADLESS=false to see the browser
|
|
91
92
|
self.headless = os.getenv("BROWSER_HEADLESS", "true").lower() != "false"
|
|
92
93
|
self.homepage = "https://www.google.com"
|
|
93
|
-
# Browser type: "chromium" skips Camoufox entirely, "firefox"/"camoufox" uses Camoufox
|
|
94
|
-
self.browser_type = "chromium" # Default to Chromium for reliability
|
|
95
|
-
# Camoufox-specific settings
|
|
96
|
-
self.geoip = True # Enable GeoIP spoofing
|
|
97
|
-
self.block_webrtc = True # Block WebRTC for privacy
|
|
98
|
-
self.humanize = True # Add human-like behavior
|
|
99
94
|
|
|
100
95
|
# Unique profile directory per session for browser state
|
|
101
96
|
self.profile_dir = self._get_profile_directory()
|
|
@@ -104,82 +99,36 @@ class CamoufoxManager:
|
|
|
104
99
|
"""Get or create the profile directory for this session.
|
|
105
100
|
|
|
106
101
|
Each session gets its own profile directory under:
|
|
107
|
-
XDG_CACHE_HOME/code_puppy/
|
|
102
|
+
XDG_CACHE_HOME/code_puppy/browser_profiles/<session_id>/
|
|
108
103
|
|
|
109
104
|
This allows multiple instances to run simultaneously.
|
|
110
105
|
"""
|
|
111
106
|
cache_dir = Path(config.CACHE_DIR)
|
|
112
|
-
profiles_base = cache_dir / "
|
|
107
|
+
profiles_base = cache_dir / "browser_profiles"
|
|
113
108
|
profile_path = profiles_base / self.session_id
|
|
114
109
|
profile_path.mkdir(parents=True, exist_ok=True, mode=0o700)
|
|
115
110
|
return profile_path
|
|
116
111
|
|
|
117
112
|
async def async_initialize(self) -> None:
|
|
118
|
-
"""Initialize
|
|
113
|
+
"""Initialize Chromium browser via Playwright."""
|
|
119
114
|
if self._initialized:
|
|
120
115
|
return
|
|
121
116
|
|
|
122
117
|
try:
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
# Only prefetch Camoufox if we're going to use it
|
|
127
|
-
if self.browser_type != "chromium":
|
|
128
|
-
await self._prefetch_camoufox()
|
|
129
|
-
|
|
130
|
-
await self._initialize_camoufox()
|
|
131
|
-
# emit_info(
|
|
132
|
-
# "[green]✅ Browser initialized successfully[/green]"
|
|
133
|
-
# ) # Removed to reduce console spam
|
|
118
|
+
emit_info(f"Initializing Chromium browser (session: {self.session_id})...")
|
|
119
|
+
await self._initialize_browser()
|
|
134
120
|
self._initialized = True
|
|
135
121
|
|
|
136
122
|
except Exception:
|
|
137
123
|
await self._cleanup()
|
|
138
124
|
raise
|
|
139
125
|
|
|
140
|
-
async def
|
|
141
|
-
"""
|
|
126
|
+
async def _initialize_browser(self) -> None:
|
|
127
|
+
"""Initialize Playwright Chromium browser with persistent context."""
|
|
128
|
+
from playwright.async_api import async_playwright
|
|
142
129
|
|
|
143
|
-
If browser_type is 'chromium', skips Camoufox and uses Playwright Chromium directly.
|
|
144
|
-
Otherwise, tries Camoufox first and falls back to Chromium on failure.
|
|
145
|
-
"""
|
|
146
130
|
emit_info(f"Using persistent profile: {self.profile_dir}")
|
|
147
131
|
|
|
148
|
-
# If chromium is explicitly requested, skip Camoufox entirely
|
|
149
|
-
if self.browser_type == "chromium":
|
|
150
|
-
await self._initialize_chromium()
|
|
151
|
-
return
|
|
152
|
-
|
|
153
|
-
# Lazy import camoufox to avoid triggering heavy optional deps at import time
|
|
154
|
-
try:
|
|
155
|
-
import camoufox
|
|
156
|
-
from camoufox.addons import DefaultAddons
|
|
157
|
-
|
|
158
|
-
camoufox_instance = camoufox.AsyncCamoufox(
|
|
159
|
-
headless=self.headless,
|
|
160
|
-
block_webrtc=self.block_webrtc,
|
|
161
|
-
humanize=self.humanize,
|
|
162
|
-
exclude_addons=list(DefaultAddons),
|
|
163
|
-
persistent_context=True,
|
|
164
|
-
user_data_dir=str(self.profile_dir),
|
|
165
|
-
addons=[],
|
|
166
|
-
)
|
|
167
|
-
|
|
168
|
-
self._browser = camoufox_instance.browser
|
|
169
|
-
if not self._initialized:
|
|
170
|
-
self._context = await camoufox_instance.start()
|
|
171
|
-
self._initialized = True
|
|
172
|
-
except Exception:
|
|
173
|
-
emit_warning(
|
|
174
|
-
"Camoufox not available. Falling back to Playwright (Chromium)."
|
|
175
|
-
)
|
|
176
|
-
await self._initialize_chromium()
|
|
177
|
-
|
|
178
|
-
async def _initialize_chromium(self) -> None:
|
|
179
|
-
"""Initialize Playwright Chromium browser."""
|
|
180
|
-
from playwright.async_api import async_playwright
|
|
181
|
-
|
|
182
|
-
emit_info("Initializing Chromium browser...")
|
|
183
132
|
pw = await async_playwright().start()
|
|
184
133
|
# Use persistent context directory for Chromium to preserve browser state
|
|
185
134
|
context = await pw.chromium.launch_persistent_context(
|
|
@@ -214,41 +163,6 @@ class CamoufoxManager:
|
|
|
214
163
|
await page.goto(url)
|
|
215
164
|
return page
|
|
216
165
|
|
|
217
|
-
async def _prefetch_camoufox(self) -> None:
|
|
218
|
-
"""Prefetch Camoufox binary and dependencies."""
|
|
219
|
-
emit_info("Ensuring Camoufox binary and dependencies are up-to-date...")
|
|
220
|
-
|
|
221
|
-
# Lazy import camoufox utilities to avoid side effects during module import
|
|
222
|
-
try:
|
|
223
|
-
from camoufox.exceptions import CamoufoxNotInstalled, UnsupportedVersion
|
|
224
|
-
from camoufox.locale import ALLOW_GEOIP, download_mmdb
|
|
225
|
-
from camoufox.pkgman import CamoufoxFetcher, camoufox_path
|
|
226
|
-
except Exception:
|
|
227
|
-
emit_warning(
|
|
228
|
-
"Camoufox no disponible. Omitiendo prefetch y preparándose para usar Playwright."
|
|
229
|
-
)
|
|
230
|
-
return
|
|
231
|
-
|
|
232
|
-
needs_install = False
|
|
233
|
-
try:
|
|
234
|
-
camoufox_path(download_if_missing=False)
|
|
235
|
-
emit_info("Using cached Camoufox installation")
|
|
236
|
-
except (CamoufoxNotInstalled, FileNotFoundError):
|
|
237
|
-
emit_info("Camoufox not found, installing fresh copy")
|
|
238
|
-
needs_install = True
|
|
239
|
-
except UnsupportedVersion:
|
|
240
|
-
emit_info("Camoufox update required, reinstalling")
|
|
241
|
-
needs_install = True
|
|
242
|
-
|
|
243
|
-
if needs_install:
|
|
244
|
-
CamoufoxFetcher().install()
|
|
245
|
-
|
|
246
|
-
# Fetch GeoIP database if enabled
|
|
247
|
-
if ALLOW_GEOIP:
|
|
248
|
-
download_mmdb()
|
|
249
|
-
|
|
250
|
-
emit_info("Camoufox dependencies ready")
|
|
251
|
-
|
|
252
166
|
async def close_page(self, page: Page) -> None:
|
|
253
167
|
"""Close a specific page."""
|
|
254
168
|
await page.close()
|
|
@@ -303,11 +217,11 @@ class CamoufoxManager:
|
|
|
303
217
|
async def close(self) -> None:
|
|
304
218
|
"""Close the browser and clean up resources."""
|
|
305
219
|
await self._cleanup()
|
|
306
|
-
emit_info(f"
|
|
220
|
+
emit_info(f"Browser closed (session: {self.session_id})")
|
|
307
221
|
|
|
308
222
|
|
|
309
|
-
def
|
|
310
|
-
"""Get or create a
|
|
223
|
+
def get_browser_manager(session_id: Optional[str] = None) -> BrowserManager:
|
|
224
|
+
"""Get or create a BrowserManager instance.
|
|
311
225
|
|
|
312
226
|
Args:
|
|
313
227
|
session_id: Optional session ID. If provided and a manager with this
|
|
@@ -315,19 +229,19 @@ def get_camoufox_manager(session_id: Optional[str] = None) -> CamoufoxManager:
|
|
|
315
229
|
If None, uses 'default' as the session ID.
|
|
316
230
|
|
|
317
231
|
Returns:
|
|
318
|
-
A
|
|
232
|
+
A BrowserManager instance.
|
|
319
233
|
|
|
320
234
|
Example:
|
|
321
235
|
# Default session (for single-agent use)
|
|
322
|
-
manager =
|
|
236
|
+
manager = get_browser_manager()
|
|
323
237
|
|
|
324
238
|
# Named session (for multi-agent use)
|
|
325
|
-
manager =
|
|
239
|
+
manager = get_browser_manager("qa-agent-1")
|
|
326
240
|
"""
|
|
327
241
|
session_id = session_id or "default"
|
|
328
242
|
|
|
329
243
|
if session_id not in _active_managers:
|
|
330
|
-
_active_managers[session_id] =
|
|
244
|
+
_active_managers[session_id] = BrowserManager(session_id)
|
|
331
245
|
|
|
332
246
|
return _active_managers[session_id]
|
|
333
247
|
|
|
@@ -395,3 +309,8 @@ def _sync_cleanup_browsers() -> None:
|
|
|
395
309
|
# Register the cleanup handler with atexit
|
|
396
310
|
# This ensures browsers are closed even if close_browser() isn't explicitly called
|
|
397
311
|
atexit.register(_sync_cleanup_browsers)
|
|
312
|
+
|
|
313
|
+
|
|
314
|
+
# Backwards compatibility aliases
|
|
315
|
+
CamoufoxManager = BrowserManager
|
|
316
|
+
get_camoufox_manager = get_browser_manager
|
|
@@ -7,7 +7,7 @@ from pydantic_ai import RunContext
|
|
|
7
7
|
from code_puppy.messaging import emit_error, emit_info, emit_success
|
|
8
8
|
from code_puppy.tools.common import generate_group_id
|
|
9
9
|
|
|
10
|
-
from .
|
|
10
|
+
from .browser_manager import get_session_browser_manager
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
async def navigate_to_url(url: str) -> Dict[str, Any]:
|
|
@@ -15,7 +15,7 @@ from pydantic_ai import BinaryContent, RunContext, ToolReturn
|
|
|
15
15
|
from code_puppy.messaging import emit_error, emit_info, emit_success
|
|
16
16
|
from code_puppy.tools.common import generate_group_id
|
|
17
17
|
|
|
18
|
-
from .
|
|
18
|
+
from .browser_manager import get_session_browser_manager
|
|
19
19
|
|
|
20
20
|
_TEMP_SCREENSHOT_ROOT = Path(
|
|
21
21
|
mkdtemp(prefix="code_puppy_screenshots_", dir=gettempdir())
|
|
@@ -7,7 +7,7 @@ from pydantic_ai import RunContext
|
|
|
7
7
|
from code_puppy.messaging import emit_error, emit_info, emit_success
|
|
8
8
|
from code_puppy.tools.common import generate_group_id
|
|
9
9
|
|
|
10
|
-
from .
|
|
10
|
+
from .browser_manager import get_session_browser_manager
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
async def execute_javascript(
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"api_key": "$SYN_API_KEY"
|
|
8
8
|
},
|
|
9
9
|
"context_length": 200000,
|
|
10
|
-
"supported_settings": ["temperature", "seed"]
|
|
10
|
+
"supported_settings": ["temperature", "seed", "top_p"]
|
|
11
11
|
},
|
|
12
12
|
"synthetic-MiniMax-M2.1": {
|
|
13
13
|
"type": "custom_openai",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"api_key": "$SYN_API_KEY"
|
|
18
18
|
},
|
|
19
19
|
"context_length": 195000,
|
|
20
|
-
"supported_settings": ["temperature", "seed"]
|
|
20
|
+
"supported_settings": ["temperature", "seed", "top_p"]
|
|
21
21
|
},
|
|
22
22
|
"synthetic-Kimi-K2-Thinking": {
|
|
23
23
|
"type": "custom_openai",
|
|
@@ -27,32 +27,32 @@
|
|
|
27
27
|
"api_key": "$SYN_API_KEY"
|
|
28
28
|
},
|
|
29
29
|
"context_length": 262144,
|
|
30
|
-
"supported_settings": ["temperature", "seed"]
|
|
30
|
+
"supported_settings": ["temperature", "seed", "top_p"]
|
|
31
31
|
},
|
|
32
32
|
"Gemini-3": {
|
|
33
33
|
"type": "gemini",
|
|
34
34
|
"name": "gemini-3-pro-preview",
|
|
35
35
|
"context_length": 200000,
|
|
36
|
-
"supported_settings": ["temperature"]
|
|
36
|
+
"supported_settings": ["temperature", "top_p"]
|
|
37
37
|
},
|
|
38
38
|
"Gemini-3-Long-Context": {
|
|
39
39
|
"type": "gemini",
|
|
40
40
|
"name": "gemini-3-pro-preview",
|
|
41
41
|
"context_length": 1000000,
|
|
42
|
-
"supported_settings": ["temperature"]
|
|
42
|
+
"supported_settings": ["temperature", "top_p"]
|
|
43
43
|
},
|
|
44
44
|
"gpt-5.1": {
|
|
45
45
|
"type": "openai",
|
|
46
46
|
"name": "gpt-5.1",
|
|
47
47
|
"context_length": 272000,
|
|
48
|
-
"supported_settings": ["reasoning_effort", "verbosity"],
|
|
48
|
+
"supported_settings": ["temperature", "top_p", "reasoning_effort", "verbosity"],
|
|
49
49
|
"supports_xhigh_reasoning": false
|
|
50
50
|
},
|
|
51
51
|
"gpt-5.1-codex-api": {
|
|
52
52
|
"type": "openai",
|
|
53
53
|
"name": "gpt-5.1-codex",
|
|
54
54
|
"context_length": 272000,
|
|
55
|
-
"supported_settings": ["reasoning_effort", "verbosity"],
|
|
55
|
+
"supported_settings": ["temperature", "top_p", "reasoning_effort", "verbosity"],
|
|
56
56
|
"supports_xhigh_reasoning": true
|
|
57
57
|
},
|
|
58
58
|
"Cerebras-GLM-4.7": {
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"api_key": "$CEREBRAS_API_KEY"
|
|
64
64
|
},
|
|
65
65
|
"context_length": 131072,
|
|
66
|
-
"supported_settings": ["temperature", "seed"]
|
|
66
|
+
"supported_settings": ["temperature", "seed", "top_p"]
|
|
67
67
|
},
|
|
68
68
|
"claude-4-5-haiku": {
|
|
69
69
|
"type": "anthropic",
|
|
@@ -87,24 +87,24 @@
|
|
|
87
87
|
"type": "zai_coding",
|
|
88
88
|
"name": "glm-4.6",
|
|
89
89
|
"context_length": 200000,
|
|
90
|
-
"supported_settings": ["temperature"]
|
|
90
|
+
"supported_settings": ["temperature", "top_p"]
|
|
91
91
|
},
|
|
92
92
|
"zai-glm-4.6-api": {
|
|
93
93
|
"type": "zai_api",
|
|
94
94
|
"name": "glm-4.6",
|
|
95
95
|
"context_length": 200000,
|
|
96
|
-
"supported_settings": ["temperature"]
|
|
96
|
+
"supported_settings": ["temperature", "top_p"]
|
|
97
97
|
},
|
|
98
98
|
"zai-glm-4.7-coding": {
|
|
99
99
|
"type": "zai_coding",
|
|
100
100
|
"name": "glm-4.7",
|
|
101
101
|
"context_length": 200000,
|
|
102
|
-
"supported_settings": ["temperature"]
|
|
102
|
+
"supported_settings": ["temperature", "top_p"]
|
|
103
103
|
},
|
|
104
104
|
"zai-glm-4.7-api": {
|
|
105
105
|
"type": "zai_api",
|
|
106
106
|
"name": "glm-4.7",
|
|
107
107
|
"context_length": 200000,
|
|
108
|
-
"supported_settings": ["temperature"]
|
|
108
|
+
"supported_settings": ["temperature", "top_p"]
|
|
109
109
|
}
|
|
110
110
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: code-puppy
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.373
|
|
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
|
|
@@ -15,27 +15,26 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3.13
|
|
16
16
|
Classifier: Topic :: Software Development :: Code Generators
|
|
17
17
|
Requires-Python: <3.14,>=3.11
|
|
18
|
-
Requires-Dist: camoufox>=0.4.11
|
|
19
18
|
Requires-Dist: dbos>=2.5.0
|
|
20
19
|
Requires-Dist: fastapi>=0.109.0
|
|
21
20
|
Requires-Dist: httpx[http2]>=0.24.1
|
|
22
21
|
Requires-Dist: json-repair>=0.46.2
|
|
23
|
-
Requires-Dist:
|
|
22
|
+
Requires-Dist: mcp>=1.9.4
|
|
24
23
|
Requires-Dist: openai>=1.99.1
|
|
25
24
|
Requires-Dist: pillow>=10.0.0
|
|
26
25
|
Requires-Dist: playwright>=1.40.0
|
|
27
26
|
Requires-Dist: prompt-toolkit>=3.0.52
|
|
28
|
-
Requires-Dist: pydantic-ai==1.
|
|
27
|
+
Requires-Dist: pydantic-ai-slim[anthropic,mcp,openai]==1.26.0
|
|
29
28
|
Requires-Dist: pydantic>=2.4.0
|
|
30
29
|
Requires-Dist: pyfiglet>=0.8.post1
|
|
31
|
-
Requires-Dist: pytest-cov>=6.1.1
|
|
32
30
|
Requires-Dist: python-dotenv>=1.0.0
|
|
33
31
|
Requires-Dist: rapidfuzz>=3.13.0
|
|
32
|
+
Requires-Dist: requests>=2.28.0
|
|
34
33
|
Requires-Dist: rich>=13.4.2
|
|
35
34
|
Requires-Dist: ripgrep==14.1.0
|
|
36
|
-
Requires-Dist: ruff>=0.11.11
|
|
37
35
|
Requires-Dist: tenacity>=8.2.0
|
|
38
36
|
Requires-Dist: termflow-md>=0.1.8
|
|
37
|
+
Requires-Dist: typer>=0.12.0
|
|
39
38
|
Requires-Dist: uvicorn[standard]>=0.27.0
|
|
40
39
|
Requires-Dist: websockets>=12.0
|
|
41
40
|
Description-Content-Type: text/markdown
|
|
@@ -1,21 +1,23 @@
|
|
|
1
1
|
code_puppy/__init__.py,sha256=xMPewo9RNHb3yfFNIk5WCbv2cvSPtJOCgK2-GqLbNnU,373
|
|
2
2
|
code_puppy/__main__.py,sha256=pDVssJOWP8A83iFkxMLY9YteHYat0EyWDQqMkKHpWp4,203
|
|
3
3
|
code_puppy/callbacks.py,sha256=Pp0VyeXJBEtk-N_RSWr5pbveelovsdLUiJ4f11dzwGw,10775
|
|
4
|
-
code_puppy/chatgpt_codex_client.py,sha256=
|
|
5
|
-
code_puppy/claude_cache_client.py,sha256=
|
|
4
|
+
code_puppy/chatgpt_codex_client.py,sha256=upMuAfOhMB7SEpVw4CU4GjgaeZ8X65ri3yNM-dnlmYA,12308
|
|
5
|
+
code_puppy/claude_cache_client.py,sha256=GtwYrxcTe0pE-JGtl1ysR2qskfeE73_x4w7q_u-kR1k,24026
|
|
6
6
|
code_puppy/cli_runner.py,sha256=w5CLKgQYYaT7My3Cga2StXYol-u6DBxNzzUuhhsfhsA,34952
|
|
7
|
-
code_puppy/config.py,sha256=
|
|
7
|
+
code_puppy/config.py,sha256=aKWADF6PdHnr9_0ZVZHwBh5NH9uSAx1lmIiycfaYEF8,54737
|
|
8
8
|
code_puppy/error_logging.py,sha256=a80OILCUtJhexI6a9GM-r5LqIdjvSRzggfgPp2jv1X0,3297
|
|
9
9
|
code_puppy/gemini_code_assist.py,sha256=KGS7sO5OLc83nDF3xxS-QiU6vxW9vcm6hmzilu79Ef8,13867
|
|
10
|
-
code_puppy/
|
|
10
|
+
code_puppy/gemini_model.py,sha256=i8XXmx9s1eWEXpJ8U288w0yayTt6Nq8V-hxpUHhti4s,25984
|
|
11
|
+
code_puppy/http_utils.py,sha256=SAH6EOdbR6Cbfmi-4EtHDqRDBUV5bWtGc-5nr44F0Is,10418
|
|
11
12
|
code_puppy/keymap.py,sha256=IvMkTlB_bIqOWpbTpmftkdyjhtD5todXuEIw1zCZ4u0,3584
|
|
12
13
|
code_puppy/main.py,sha256=82r3vZy_XcyEsenLn82BnUusaoyL3Bpm_Th_jKgqecE,273
|
|
13
|
-
code_puppy/model_factory.py,sha256=
|
|
14
|
-
code_puppy/
|
|
15
|
-
code_puppy/
|
|
14
|
+
code_puppy/model_factory.py,sha256=854Bo8wx59dOirAMhH0YuSXVHs-IxQBT_yrJGyVjKcA,39924
|
|
15
|
+
code_puppy/model_switching.py,sha256=3IsnSWKHLWzI5d2WDYNg0Xr78BeYNN1WrZuzas-lYJ4,2064
|
|
16
|
+
code_puppy/model_utils.py,sha256=sNTjclnS2hfV2o27qXSAZjaA3d72ucVVI3gOvAKpaBQ,3799
|
|
17
|
+
code_puppy/models.json,sha256=jAHRsCl3trysP4vU_k_ltA8GcFU2APd4lxFl8-4Jnvc,3243
|
|
16
18
|
code_puppy/models_dev_api.json,sha256=wHjkj-IM_fx1oHki6-GqtOoCrRMR0ScK0f-Iz0UEcy8,548187
|
|
17
19
|
code_puppy/models_dev_parser.py,sha256=8ndmWrsSyKbXXpRZPXc0w6TfWMuCcgaHiMifmlaBaPc,20611
|
|
18
|
-
code_puppy/pydantic_patches.py,sha256
|
|
20
|
+
code_puppy/pydantic_patches.py,sha256=-tYaQW8FMAbxuKGbsM09pvjCBqwk67mf7GekXzGKf14,6444
|
|
19
21
|
code_puppy/reopenable_async_client.py,sha256=pD34chyBFcC7_OVPJ8fp6aRI5jYdN-7VDycObMZPwG8,8292
|
|
20
22
|
code_puppy/round_robin_model.py,sha256=kSawwPUiPgg0yg8r4AAVgvjzsWkptxpSORd75-HP7W4,5335
|
|
21
23
|
code_puppy/session_storage.py,sha256=T4hOsAl9z0yz2JZCptjJBOnN8fCmkLZx5eLy1hTdv6Q,9631
|
|
@@ -24,7 +26,7 @@ code_puppy/summarization_agent.py,sha256=6Pu_Wp_rF-HAhoX9u2uXTabRVkOZUYwRoMP1lzN
|
|
|
24
26
|
code_puppy/terminal_utils.py,sha256=TaS19x7EZqudlBUAQwLMzBMNxBHBNInvQQREXqRGtkM,12984
|
|
25
27
|
code_puppy/uvx_detection.py,sha256=tP9X9Nvzow--KIqtqjgrHQkSxMJ3EevfoaeoB9VLY2o,7224
|
|
26
28
|
code_puppy/version_checker.py,sha256=aq2Mwxl1CR9sEFBgrPt3OQOowLOBUp9VaQYWJhuUv8Q,1780
|
|
27
|
-
code_puppy/agents/__init__.py,sha256=
|
|
29
|
+
code_puppy/agents/__init__.py,sha256=OjdPBQoywc50OM6lO6QydEUuPeekbFQBL3kxR3lGczo,748
|
|
28
30
|
code_puppy/agents/agent_c_reviewer.py,sha256=1kO_89hcrhlS4sJ6elDLSEx-h43jAaWGgvIL0SZUuKo,8214
|
|
29
31
|
code_puppy/agents/agent_code_puppy.py,sha256=-u9VkqoE_GuB8zae9OeFMv64qt94cFs-_tzK2stIk5A,8406
|
|
30
32
|
code_puppy/agents/agent_code_reviewer.py,sha256=V9pznpi7z1XTYBjRj1Em8S71PbFXLvU8z0gCmPAQxSc,4635
|
|
@@ -32,7 +34,7 @@ code_puppy/agents/agent_cpp_reviewer.py,sha256=lbaGU4aKSNBrxsYfN86BKOeKBgL8kS9sL
|
|
|
32
34
|
code_puppy/agents/agent_creator_agent.py,sha256=pYnDRCn8qWivAeu-GA-WYn_gZ67KT1I9ZyHbaNssIII,25027
|
|
33
35
|
code_puppy/agents/agent_golang_reviewer.py,sha256=VEAwiQW06occkfABVz9Y7wStQ8pFtX94DAvZdRSRuzs,9319
|
|
34
36
|
code_puppy/agents/agent_javascript_reviewer.py,sha256=ATSXl278kPU4F6hiYsMMGkGrrWDlJqPwaYwYGNuo9J0,9494
|
|
35
|
-
code_puppy/agents/agent_manager.py,sha256=
|
|
37
|
+
code_puppy/agents/agent_manager.py,sha256=7bgG2ni6xUu8JNiuuMSUeYloNqpTjNXCF8M4V2DRB3o,22824
|
|
36
38
|
code_puppy/agents/agent_pack_leader.py,sha256=DrP5rnYZbqkOm4ClK_Q4-aehjqXXVlq1UFs1bu11zbA,15766
|
|
37
39
|
code_puppy/agents/agent_planning.py,sha256=LtFqQixrDUPudSvmhbntK-zRbDHn0lSi1xrKFVqCwDo,6902
|
|
38
40
|
code_puppy/agents/agent_python_programmer.py,sha256=R-7XoGIFJ58EY9LE9mWGcQQ8gSsMzi-1HD6wigJQPL8,6846
|
|
@@ -42,7 +44,7 @@ code_puppy/agents/agent_qa_kitten.py,sha256=qvry-1u_CiXi8eRueHTax4OtqsS_mQrtXHsb
|
|
|
42
44
|
code_puppy/agents/agent_security_auditor.py,sha256=SpiYNA0XAsIwBj7S2_EQPRslRUmF_-b89pIJyW7DYtY,12022
|
|
43
45
|
code_puppy/agents/agent_terminal_qa.py,sha256=U-iyP7OBWdAmchW_oUU8k6asH2aignTMmgqqYDyf-ms,10343
|
|
44
46
|
code_puppy/agents/agent_typescript_reviewer.py,sha256=vsnpp98xg6cIoFAEJrRTUM_i4wLEWGm5nJxs6fhHobM,10275
|
|
45
|
-
code_puppy/agents/base_agent.py,sha256=
|
|
47
|
+
code_puppy/agents/base_agent.py,sha256=matYwfhf0cBbzYY-LbpJxmkXehzD9QY9cRK7CukP8X8,73293
|
|
46
48
|
code_puppy/agents/event_stream_handler.py,sha256=JttLZJpNADE5HXiXY-GZ6tpwaBeFRODcy34KiquPOvU,14952
|
|
47
49
|
code_puppy/agents/json_agent.py,sha256=lhopDJDoiSGHvD8A6t50hi9ZBoNRKgUywfxd0Po_Dzc,4886
|
|
48
50
|
code_puppy/agents/prompt_reviewer.py,sha256=JJrJ0m5q0Puxl8vFsyhAbY9ftU9n6c6UxEVdNct1E-Q,5558
|
|
@@ -66,7 +68,8 @@ code_puppy/api/routers/config.py,sha256=uDUFYZqki0fQd0U5EHpfTgqlZaRFfmhPyWrIHXNB
|
|
|
66
68
|
code_puppy/api/routers/sessions.py,sha256=GqYRT7IJYPpEdTseLF3FIpbvvD86lIqwwPswL31D9Wc,6786
|
|
67
69
|
code_puppy/api/templates/terminal.html,sha256=9alh6tTbLyXPDjBvkXw8nEWPXB-m_LIceGGRYpSLuyo,13125
|
|
68
70
|
code_puppy/command_line/__init__.py,sha256=y7WeRemfYppk8KVbCGeAIiTuiOszIURCDjOMZv_YRmU,45
|
|
69
|
-
code_puppy/command_line/add_model_menu.py,sha256=
|
|
71
|
+
code_puppy/command_line/add_model_menu.py,sha256=nKE5KgecxFvR_9EDy1W_swVvMs97Qg8f1gZETpBjMUc,43479
|
|
72
|
+
code_puppy/command_line/agent_menu.py,sha256=4SVPS0eA7YfpxacNk0Kel16bzqQ3bBGe8dqCCOI2A8s,20915
|
|
70
73
|
code_puppy/command_line/attachments.py,sha256=4Q5I2Es4j0ltnz5wjw2z0QXMsiMJvEfWRkPf_lJeITM,13093
|
|
71
74
|
code_puppy/command_line/autosave_menu.py,sha256=de7nOmFmEH6x5T7C95U8N8xgxxeF-l5lgaJzGJsF3ZY,19824
|
|
72
75
|
code_puppy/command_line/clipboard.py,sha256=oe9bfAX5RnT81FiYrDmhvHaePS1tAT-NFG1fSXubSD4,16869
|
|
@@ -74,13 +77,13 @@ code_puppy/command_line/colors_menu.py,sha256=LoFVfJ-Mo-Eq9hnb2Rj5mn7oBCnadAGr-8
|
|
|
74
77
|
code_puppy/command_line/command_handler.py,sha256=CY9F27eovZJK_kpU1YmbroYLWGTCuouCOQ-TXfDp-nw,10916
|
|
75
78
|
code_puppy/command_line/command_registry.py,sha256=qFySsw1g8dol3kgi0p6cXrIDlP11_OhOoaQ5nAadWXg,4416
|
|
76
79
|
code_puppy/command_line/config_commands.py,sha256=qS9Cm758DPz2QGvHLhAV4Tp_Xfgo3PyoCoLDusbnmCw,25742
|
|
77
|
-
code_puppy/command_line/core_commands.py,sha256=
|
|
80
|
+
code_puppy/command_line/core_commands.py,sha256=QTQt2CS9_6ExcgS6BLgRZWkXDaSb-KC_tWplUkOGaMA,27133
|
|
78
81
|
code_puppy/command_line/diff_menu.py,sha256=_Gr9SP9fbItk-08dya9WTAR53s_PlyAvEnbt-8VWKPk,24141
|
|
79
82
|
code_puppy/command_line/file_path_completion.py,sha256=gw8NpIxa6GOpczUJRyh7VNZwoXKKn-yvCqit7h2y6Gg,2931
|
|
80
83
|
code_puppy/command_line/load_context_completion.py,sha256=a3JvLDeLLSYxVgTjAdqWzS4spjv6ccCrK2LKZgVJ1IM,2202
|
|
81
84
|
code_puppy/command_line/mcp_completion.py,sha256=eKzW2O7gun7HoHekOW0XVXhNS5J2xCtK7aaWyA8bkZk,6952
|
|
82
|
-
code_puppy/command_line/model_picker_completion.py,sha256=
|
|
83
|
-
code_puppy/command_line/model_settings_menu.py,sha256=
|
|
85
|
+
code_puppy/command_line/model_picker_completion.py,sha256=YRudzwGVtIjr02MyeIdmbkDhS00ENjCt9k3nATT3KdM,6143
|
|
86
|
+
code_puppy/command_line/model_settings_menu.py,sha256=VelHDj1kD_vzGzKfqJ16n-iNEMz4yBAx5TkLH0YTwC8,33055
|
|
84
87
|
code_puppy/command_line/motd.py,sha256=XuIk3UTLawwVFM-NfoaJGU5F2hPLASTFXq84UdDMT0Q,2408
|
|
85
88
|
code_puppy/command_line/onboarding_slides.py,sha256=itqAsuHzjHpD_XNz6FniBIYr6dNyP1AW_XQZQ6SbVek,7125
|
|
86
89
|
code_puppy/command_line/onboarding_wizard.py,sha256=U5lV_1P3IwDYZUHar0zKgdp121zzkvOwwORvdCZwFcw,10241
|
|
@@ -146,29 +149,29 @@ code_puppy/plugins/__init__.py,sha256=gWgrXWoFpl-3Mxz2DAvxKW6SkCWrOnw-hKsY9O7nHc
|
|
|
146
149
|
code_puppy/plugins/oauth_puppy_html.py,sha256=Wpa-V_NlRiBAvo_OXHuR7wvOH_jSt8L9HSFGiab6xI0,13058
|
|
147
150
|
code_puppy/plugins/antigravity_oauth/__init__.py,sha256=1miHihSqRNXO20Vh_Gn9M3Aa2szh0gtdSCaKKj9nq0Q,362
|
|
148
151
|
code_puppy/plugins/antigravity_oauth/accounts.py,sha256=GQit2-K24bsopmTZyscFUq3M0cAEO5WutHWnipVdgz8,14304
|
|
149
|
-
code_puppy/plugins/antigravity_oauth/antigravity_model.py,sha256=
|
|
152
|
+
code_puppy/plugins/antigravity_oauth/antigravity_model.py,sha256=ZFarvPYgYixQxEmEylIIbsSl7fmL8bYD8RXL_9wzDRA,26281
|
|
150
153
|
code_puppy/plugins/antigravity_oauth/config.py,sha256=BoQgqf5I2XoHWnBBo9vhCIc_XwPj9Mbp0Z95ygWwt78,1362
|
|
151
154
|
code_puppy/plugins/antigravity_oauth/constants.py,sha256=qsrA10JJvzNuY0OobvvwCQcoGpILBninllcUUMKkUrQ,4644
|
|
152
155
|
code_puppy/plugins/antigravity_oauth/oauth.py,sha256=ZHXJtZP63l6brOpX1WdLfuUClIleA79-4y36YUJc6Wo,15137
|
|
153
|
-
code_puppy/plugins/antigravity_oauth/register_callbacks.py,sha256=
|
|
156
|
+
code_puppy/plugins/antigravity_oauth/register_callbacks.py,sha256=ogW823_ysCph8kGunPZ60mzbk4drx_NEO_4-WtMB4SA,13331
|
|
154
157
|
code_puppy/plugins/antigravity_oauth/storage.py,sha256=LW1DkY6Z-GRbBDrIitT6glKemZptp3NzldIrLRqTAK0,8971
|
|
155
158
|
code_puppy/plugins/antigravity_oauth/test_plugin.py,sha256=n0kjFG8Vt2n1j0GgTRSdSyhF0t9xxE8Ht60SH5CSwzw,11027
|
|
156
159
|
code_puppy/plugins/antigravity_oauth/token.py,sha256=WbiFCkrZvChpGXvwIYsJMgqU9xdJ81KwR062lFlnL3U,5038
|
|
157
|
-
code_puppy/plugins/antigravity_oauth/transport.py,sha256=
|
|
160
|
+
code_puppy/plugins/antigravity_oauth/transport.py,sha256=XgeG2Ys_Ui0_9cnrYWN7nENehFv76Rr2_QPAcIbPROI,35723
|
|
158
161
|
code_puppy/plugins/antigravity_oauth/utils.py,sha256=mXHRv0l07r27VjtSsIy9rlpkUheP88RaM4x4M0O1mMY,5401
|
|
159
162
|
code_puppy/plugins/chatgpt_oauth/__init__.py,sha256=Kjc6Hsz1sWvMD2OdAlWZvJRiKJSj4fx22boa-aVFKjA,189
|
|
160
163
|
code_puppy/plugins/chatgpt_oauth/config.py,sha256=H_wAH9Duyn8WH2Kq8oe72uda-_4qu1uXLPun_SDdtsk,2023
|
|
161
164
|
code_puppy/plugins/chatgpt_oauth/oauth_flow.py,sha256=i-CP2gpzEBT3ogUt-oTMexiP2on41N6PbRGIy2lZF30,11028
|
|
162
|
-
code_puppy/plugins/chatgpt_oauth/register_callbacks.py,sha256=
|
|
165
|
+
code_puppy/plugins/chatgpt_oauth/register_callbacks.py,sha256=KNi5-R0EXtkBm3p55ttAxuA_ApaOs_tsGDnPt-5vgGA,2998
|
|
163
166
|
code_puppy/plugins/chatgpt_oauth/test_plugin.py,sha256=oHX7Eb_Hb4rgRpOWdhtFp8Jj6_FDuvXQITRPiNy4tRo,9622
|
|
164
167
|
code_puppy/plugins/chatgpt_oauth/utils.py,sha256=fzpsCQOv0kqPWmG5vNEV_GLSUrMQh8cF7tdIjSOt1Dc,16504
|
|
165
|
-
code_puppy/plugins/claude_code_oauth/README.md,sha256=
|
|
166
|
-
code_puppy/plugins/claude_code_oauth/SETUP.md,sha256=
|
|
168
|
+
code_puppy/plugins/claude_code_oauth/README.md,sha256=fOSDDzCdm2JCKjU5J82IRHIAhxYxl8_UmHo7uH4AbFo,5469
|
|
169
|
+
code_puppy/plugins/claude_code_oauth/SETUP.md,sha256=DCNLkSU9nf86S1rsrIg8HBe87NZrF8YND8P4ettWeEM,3289
|
|
167
170
|
code_puppy/plugins/claude_code_oauth/__init__.py,sha256=mCcOU-wM7LNCDjr-w-WLPzom8nTF1UNt4nqxGE6Rt0k,187
|
|
168
171
|
code_puppy/plugins/claude_code_oauth/config.py,sha256=DjGySCkvjSGZds6DYErLMAi3TItt8iSLGvyJN98nSEM,2013
|
|
169
|
-
code_puppy/plugins/claude_code_oauth/register_callbacks.py,sha256=
|
|
172
|
+
code_puppy/plugins/claude_code_oauth/register_callbacks.py,sha256=ZnLQfwssbQXdCpnMGHjzEIzXTLc_OZ1UGS4npU5k5m8,9168
|
|
170
173
|
code_puppy/plugins/claude_code_oauth/test_plugin.py,sha256=yQy4EeZl4bjrcog1d8BjknoDTRK75mRXXvkSQJYSSEM,9286
|
|
171
|
-
code_puppy/plugins/claude_code_oauth/utils.py,sha256=
|
|
174
|
+
code_puppy/plugins/claude_code_oauth/utils.py,sha256=2ioGG-4FCh4WdHrN2MJvWKbPWA-YVg_WTEeddc1xv4U,18557
|
|
172
175
|
code_puppy/plugins/customizable_commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
173
176
|
code_puppy/plugins/customizable_commands/register_callbacks.py,sha256=zVMfIzr--hVn0IOXxIicbmgj2s-HZUgtrOc0NCDOnDw,5183
|
|
174
177
|
code_puppy/plugins/example_custom_command/README.md,sha256=5c5Zkm7CW6BDSfe3WoLU7GW6t5mjjYAbu9-_pu-b3p4,8244
|
|
@@ -183,9 +186,8 @@ code_puppy/plugins/shell_safety/agent_shell_safety.py,sha256=5JutYlzzTzyFcbFujlN
|
|
|
183
186
|
code_puppy/plugins/shell_safety/command_cache.py,sha256=adYtSPNVOZfW_6dQdtEihO6E-JYXYrdvlS1Cl7xBkDU,4546
|
|
184
187
|
code_puppy/plugins/shell_safety/register_callbacks.py,sha256=W3v664RR48Fdbbbltf_NnX22_Ahw2AvAOtvXvWc7KxQ,7322
|
|
185
188
|
code_puppy/prompts/antigravity_system_prompt.md,sha256=ZaTfRyY57ttROyZMmOBtqZQu1to7sdTNTv8_0fTgPNw,6807
|
|
186
|
-
code_puppy/prompts/codex_system_prompt.md,sha256=hEFTCziroLqZmqNle5kG34A8kvTteOWezCiVrAEKhE0,24400
|
|
187
189
|
code_puppy/tools/__init__.py,sha256=9bzVIjX9CAr2YTZkhD7IWFYt4KpnFRx6ge_Tqazugbs,7425
|
|
188
|
-
code_puppy/tools/agent_tools.py,sha256=
|
|
190
|
+
code_puppy/tools/agent_tools.py,sha256=Dw2yNWhHtLd0Skh2jWElHSwTX4VgV08xVjrV2cL7KlU,25506
|
|
189
191
|
code_puppy/tools/command_runner.py,sha256=Sresr_ykou_c2V1sKoNxqrqCQovKF5yDiQJ8r3E9lak,50995
|
|
190
192
|
code_puppy/tools/common.py,sha256=lVtF94cn6jtC5YKfitV7L3rk37Ts2gMoHLQrqDFD2E4,46411
|
|
191
193
|
code_puppy/tools/display.py,sha256=-ulDyq55178f8O_TAEmnxGoy_ZdFkbHBw-W4ul851GM,2675
|
|
@@ -193,23 +195,23 @@ code_puppy/tools/file_modifications.py,sha256=vz9n7R0AGDSdLUArZr_55yJLkyI30M8zre
|
|
|
193
195
|
code_puppy/tools/file_operations.py,sha256=CqhpuBnOFOcQCIYXOujskxq2VMLWYJhibYrH0YcPSfA,35692
|
|
194
196
|
code_puppy/tools/subagent_context.py,sha256=zsiKV3B3DxZ_Y5IHHhtE-SMFDg_jMrY7Hi6r5LH--IU,4781
|
|
195
197
|
code_puppy/tools/tools_content.py,sha256=bsBqW-ppd1XNAS_g50B3UHDQBWEALC1UneH6-afz1zo,2365
|
|
196
|
-
code_puppy/tools/browser/__init__.py,sha256=
|
|
197
|
-
code_puppy/tools/browser/browser_control.py,sha256=
|
|
198
|
-
code_puppy/tools/browser/browser_interactions.py,sha256=
|
|
199
|
-
code_puppy/tools/browser/browser_locators.py,sha256
|
|
200
|
-
code_puppy/tools/browser/
|
|
201
|
-
code_puppy/tools/browser/
|
|
202
|
-
code_puppy/tools/browser/
|
|
198
|
+
code_puppy/tools/browser/__init__.py,sha256=Mu6zvTQHdKcEh3ttwNgjiKtaKjVkNQ4ncpQ00mhjcE8,926
|
|
199
|
+
code_puppy/tools/browser/browser_control.py,sha256=qul611bbXteH3pBoN39AystbYr3ZXkCs9mbjobir5Io,8429
|
|
200
|
+
code_puppy/tools/browser/browser_interactions.py,sha256=toroY2hDVDaNN9g6UV-vJ5IA1htaf_Pk85Z7PXwpMm4,16774
|
|
201
|
+
code_puppy/tools/browser/browser_locators.py,sha256=--cYu5pi1nvVh673fFCV2GSOJ5XuAUHvyPpPJREOx7s,19176
|
|
202
|
+
code_puppy/tools/browser/browser_manager.py,sha256=1-aXGzlOhAqC9eeH1RY13jaJntKrhhH3IUm24CfHWC8,10444
|
|
203
|
+
code_puppy/tools/browser/browser_navigation.py,sha256=MbfIL6UNs79ImbCli1854_ftwqLke37jhwQzfcA0Zag,7415
|
|
204
|
+
code_puppy/tools/browser/browser_screenshot.py,sha256=YT35iJc9SfFI8PiIfskyehDFpk1YfJ1K6lFwrzRwkH8,6281
|
|
205
|
+
code_puppy/tools/browser/browser_scripts.py,sha256=swQLuD61mwE3uFghOZmSSJXggg5ZIPKHqKu-KvdY49Y,14778
|
|
203
206
|
code_puppy/tools/browser/browser_workflows.py,sha256=nitW42vCf0ieTX1gLabozTugNQ8phtoFzZbiAhw1V90,6491
|
|
204
|
-
code_puppy/tools/browser/camoufox_manager.py,sha256=WIr98SrGeC5jd6jX5tjhFR6A3janqV4tq9Mbznnlh44,13920
|
|
205
207
|
code_puppy/tools/browser/chromium_terminal_manager.py,sha256=w1thQ_ACb6oV45L93TSqPQD0o0cTh3FqT5I9zcOOWlM,8226
|
|
206
208
|
code_puppy/tools/browser/terminal_command_tools.py,sha256=9byOZku-dwvTtCl532xt7Lumed_jTn0sLvUe_X75XCQ,19068
|
|
207
209
|
code_puppy/tools/browser/terminal_screenshot_tools.py,sha256=J_21YO_495NvYgNFu9KQP6VYg2K_f8CtSdZuF94Yhnw,18448
|
|
208
210
|
code_puppy/tools/browser/terminal_tools.py,sha256=F5LjVH3udSCFHmqC3O1UJLoLozZFZsEdX42jOmkqkW0,17853
|
|
209
|
-
code_puppy-0.0.
|
|
210
|
-
code_puppy-0.0.
|
|
211
|
-
code_puppy-0.0.
|
|
212
|
-
code_puppy-0.0.
|
|
213
|
-
code_puppy-0.0.
|
|
214
|
-
code_puppy-0.0.
|
|
215
|
-
code_puppy-0.0.
|
|
211
|
+
code_puppy-0.0.373.data/data/code_puppy/models.json,sha256=jAHRsCl3trysP4vU_k_ltA8GcFU2APd4lxFl8-4Jnvc,3243
|
|
212
|
+
code_puppy-0.0.373.data/data/code_puppy/models_dev_api.json,sha256=wHjkj-IM_fx1oHki6-GqtOoCrRMR0ScK0f-Iz0UEcy8,548187
|
|
213
|
+
code_puppy-0.0.373.dist-info/METADATA,sha256=bdAEhxmZ0q5kT15tSnZ2yuLdwhZ-a2-UiiQY0NZXN9M,27604
|
|
214
|
+
code_puppy-0.0.373.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
215
|
+
code_puppy-0.0.373.dist-info/entry_points.txt,sha256=Tp4eQC99WY3HOKd3sdvb22vZODRq0XkZVNpXOag_KdI,91
|
|
216
|
+
code_puppy-0.0.373.dist-info/licenses/LICENSE,sha256=31u8x0SPgdOq3izJX41kgFazWsM43zPEF9eskzqbJMY,1075
|
|
217
|
+
code_puppy-0.0.373.dist-info/RECORD,,
|