code-puppy 0.0.61__tar.gz → 0.0.63__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.61 → code_puppy-0.0.63}/PKG-INFO +1 -1
- {code_puppy-0.0.61 → code_puppy-0.0.63}/code_puppy/tools/ts_code_map.py +1 -15
- {code_puppy-0.0.61 → code_puppy-0.0.63}/pyproject.toml +1 -1
- {code_puppy-0.0.61 → code_puppy-0.0.63}/.gitignore +0 -0
- {code_puppy-0.0.61 → code_puppy-0.0.63}/LICENSE +0 -0
- {code_puppy-0.0.61 → code_puppy-0.0.63}/README.md +0 -0
- {code_puppy-0.0.61 → code_puppy-0.0.63}/code_puppy/__init__.py +0 -0
- {code_puppy-0.0.61 → code_puppy-0.0.63}/code_puppy/agent.py +0 -0
- {code_puppy-0.0.61 → code_puppy-0.0.63}/code_puppy/agent_prompts.py +0 -0
- {code_puppy-0.0.61 → code_puppy-0.0.63}/code_puppy/command_line/__init__.py +0 -0
- {code_puppy-0.0.61 → code_puppy-0.0.63}/code_puppy/command_line/file_path_completion.py +0 -0
- {code_puppy-0.0.61 → code_puppy-0.0.63}/code_puppy/command_line/meta_command_handler.py +0 -0
- {code_puppy-0.0.61 → code_puppy-0.0.63}/code_puppy/command_line/model_picker_completion.py +0 -0
- {code_puppy-0.0.61 → code_puppy-0.0.63}/code_puppy/command_line/prompt_toolkit_completion.py +0 -0
- {code_puppy-0.0.61 → code_puppy-0.0.63}/code_puppy/command_line/utils.py +0 -0
- {code_puppy-0.0.61 → code_puppy-0.0.63}/code_puppy/config.py +0 -0
- {code_puppy-0.0.61 → code_puppy-0.0.63}/code_puppy/main.py +0 -0
- {code_puppy-0.0.61 → code_puppy-0.0.63}/code_puppy/model_factory.py +0 -0
- {code_puppy-0.0.61 → code_puppy-0.0.63}/code_puppy/models.json +0 -0
- {code_puppy-0.0.61 → code_puppy-0.0.63}/code_puppy/session_memory.py +0 -0
- {code_puppy-0.0.61 → code_puppy-0.0.63}/code_puppy/tools/__init__.py +0 -0
- {code_puppy-0.0.61 → code_puppy-0.0.63}/code_puppy/tools/command_runner.py +0 -0
- {code_puppy-0.0.61 → code_puppy-0.0.63}/code_puppy/tools/common.py +0 -0
- {code_puppy-0.0.61 → code_puppy-0.0.63}/code_puppy/tools/file_modifications.py +0 -0
- {code_puppy-0.0.61 → code_puppy-0.0.63}/code_puppy/tools/file_operations.py +0 -0
- {code_puppy-0.0.61 → code_puppy-0.0.63}/code_puppy/tools/web_search.py +0 -0
- {code_puppy-0.0.61 → code_puppy-0.0.63}/code_puppy/version_checker.py +0 -0
|
@@ -279,20 +279,6 @@ LANGS = {
|
|
|
279
279
|
"function_definition": partial(_f("function {name}()"), style="green")
|
|
280
280
|
},
|
|
281
281
|
},
|
|
282
|
-
# ───────── web / data description (pure-function view) ───────────
|
|
283
|
-
".html": {
|
|
284
|
-
"lang": "html",
|
|
285
|
-
"name_field": "name", # rarely useful, but included for completeness
|
|
286
|
-
"nodes": {"element": partial(_f("<{name}>"), style="yellow")},
|
|
287
|
-
},
|
|
288
|
-
".css": {
|
|
289
|
-
"lang": "css",
|
|
290
|
-
"name_field": "name",
|
|
291
|
-
"nodes": {
|
|
292
|
-
"class_selector": partial(_f(".{name}"), style="yellow"),
|
|
293
|
-
"id_selector": partial(_f("#{name}"), style="yellow"),
|
|
294
|
-
},
|
|
295
|
-
},
|
|
296
282
|
}
|
|
297
283
|
|
|
298
284
|
# Cache parsers so we don’t re-create them file-after-file
|
|
@@ -390,4 +376,4 @@ def make_code_map(directory: str, ignore_tests: bool = True) -> str:
|
|
|
390
376
|
|
|
391
377
|
buf = Console(record=True, width=120)
|
|
392
378
|
buf.print(base_tree)
|
|
393
|
-
return buf.export_text()
|
|
379
|
+
return buf.export_text()[-1000:]
|
|
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.61 → code_puppy-0.0.63}/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
|