code-puppy 0.0.61__tar.gz → 0.0.62__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.62}/PKG-INFO +1 -1
- {code_puppy-0.0.61 → code_puppy-0.0.62}/code_puppy/tools/ts_code_map.py +1 -7
- {code_puppy-0.0.61 → code_puppy-0.0.62}/pyproject.toml +1 -1
- {code_puppy-0.0.61 → code_puppy-0.0.62}/.gitignore +0 -0
- {code_puppy-0.0.61 → code_puppy-0.0.62}/LICENSE +0 -0
- {code_puppy-0.0.61 → code_puppy-0.0.62}/README.md +0 -0
- {code_puppy-0.0.61 → code_puppy-0.0.62}/code_puppy/__init__.py +0 -0
- {code_puppy-0.0.61 → code_puppy-0.0.62}/code_puppy/agent.py +0 -0
- {code_puppy-0.0.61 → code_puppy-0.0.62}/code_puppy/agent_prompts.py +0 -0
- {code_puppy-0.0.61 → code_puppy-0.0.62}/code_puppy/command_line/__init__.py +0 -0
- {code_puppy-0.0.61 → code_puppy-0.0.62}/code_puppy/command_line/file_path_completion.py +0 -0
- {code_puppy-0.0.61 → code_puppy-0.0.62}/code_puppy/command_line/meta_command_handler.py +0 -0
- {code_puppy-0.0.61 → code_puppy-0.0.62}/code_puppy/command_line/model_picker_completion.py +0 -0
- {code_puppy-0.0.61 → code_puppy-0.0.62}/code_puppy/command_line/prompt_toolkit_completion.py +0 -0
- {code_puppy-0.0.61 → code_puppy-0.0.62}/code_puppy/command_line/utils.py +0 -0
- {code_puppy-0.0.61 → code_puppy-0.0.62}/code_puppy/config.py +0 -0
- {code_puppy-0.0.61 → code_puppy-0.0.62}/code_puppy/main.py +0 -0
- {code_puppy-0.0.61 → code_puppy-0.0.62}/code_puppy/model_factory.py +0 -0
- {code_puppy-0.0.61 → code_puppy-0.0.62}/code_puppy/models.json +0 -0
- {code_puppy-0.0.61 → code_puppy-0.0.62}/code_puppy/session_memory.py +0 -0
- {code_puppy-0.0.61 → code_puppy-0.0.62}/code_puppy/tools/__init__.py +0 -0
- {code_puppy-0.0.61 → code_puppy-0.0.62}/code_puppy/tools/command_runner.py +0 -0
- {code_puppy-0.0.61 → code_puppy-0.0.62}/code_puppy/tools/common.py +0 -0
- {code_puppy-0.0.61 → code_puppy-0.0.62}/code_puppy/tools/file_modifications.py +0 -0
- {code_puppy-0.0.61 → code_puppy-0.0.62}/code_puppy/tools/file_operations.py +0 -0
- {code_puppy-0.0.61 → code_puppy-0.0.62}/code_puppy/tools/web_search.py +0 -0
- {code_puppy-0.0.61 → code_puppy-0.0.62}/code_puppy/version_checker.py +0 -0
|
@@ -279,12 +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
282
|
".css": {
|
|
289
283
|
"lang": "css",
|
|
290
284
|
"name_field": "name",
|
|
@@ -390,4 +384,4 @@ def make_code_map(directory: str, ignore_tests: bool = True) -> str:
|
|
|
390
384
|
|
|
391
385
|
buf = Console(record=True, width=120)
|
|
392
386
|
buf.print(base_tree)
|
|
393
|
-
return buf.export_text()
|
|
387
|
+
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.62}/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
|