code-puppy 0.0.76__tar.gz → 0.0.77__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.76 → code_puppy-0.0.77}/PKG-INFO +1 -1
- {code_puppy-0.0.76 → code_puppy-0.0.77}/code_puppy/agent_prompts.py +0 -1
- {code_puppy-0.0.76 → code_puppy-0.0.77}/code_puppy/models.json +16 -0
- {code_puppy-0.0.76 → code_puppy-0.0.77}/code_puppy/tools/file_modifications.py +1 -1
- {code_puppy-0.0.76 → code_puppy-0.0.77}/pyproject.toml +1 -1
- {code_puppy-0.0.76 → code_puppy-0.0.77}/.gitignore +0 -0
- {code_puppy-0.0.76 → code_puppy-0.0.77}/LICENSE +0 -0
- {code_puppy-0.0.76 → code_puppy-0.0.77}/README.md +0 -0
- {code_puppy-0.0.76 → code_puppy-0.0.77}/code_puppy/__init__.py +0 -0
- {code_puppy-0.0.76 → code_puppy-0.0.77}/code_puppy/agent.py +0 -0
- {code_puppy-0.0.76 → code_puppy-0.0.77}/code_puppy/command_line/__init__.py +0 -0
- {code_puppy-0.0.76 → code_puppy-0.0.77}/code_puppy/command_line/file_path_completion.py +0 -0
- {code_puppy-0.0.76 → code_puppy-0.0.77}/code_puppy/command_line/meta_command_handler.py +0 -0
- {code_puppy-0.0.76 → code_puppy-0.0.77}/code_puppy/command_line/model_picker_completion.py +0 -0
- {code_puppy-0.0.76 → code_puppy-0.0.77}/code_puppy/command_line/motd.py +0 -0
- {code_puppy-0.0.76 → code_puppy-0.0.77}/code_puppy/command_line/prompt_toolkit_completion.py +0 -0
- {code_puppy-0.0.76 → code_puppy-0.0.77}/code_puppy/command_line/utils.py +0 -0
- {code_puppy-0.0.76 → code_puppy-0.0.77}/code_puppy/config.py +0 -0
- {code_puppy-0.0.76 → code_puppy-0.0.77}/code_puppy/main.py +0 -0
- {code_puppy-0.0.76 → code_puppy-0.0.77}/code_puppy/model_factory.py +0 -0
- {code_puppy-0.0.76 → code_puppy-0.0.77}/code_puppy/session_memory.py +0 -0
- {code_puppy-0.0.76 → code_puppy-0.0.77}/code_puppy/tools/__init__.py +0 -0
- {code_puppy-0.0.76 → code_puppy-0.0.77}/code_puppy/tools/command_runner.py +0 -0
- {code_puppy-0.0.76 → code_puppy-0.0.77}/code_puppy/tools/common.py +0 -0
- {code_puppy-0.0.76 → code_puppy-0.0.77}/code_puppy/tools/file_operations.py +0 -0
- {code_puppy-0.0.76 → code_puppy-0.0.77}/code_puppy/tools/ts_code_map.py +0 -0
- {code_puppy-0.0.76 → code_puppy-0.0.77}/code_puppy/version_checker.py +0 -0
|
@@ -30,7 +30,6 @@ File Operations:
|
|
|
30
30
|
- edit_file(path, diff): Use this single tool to create new files, overwrite entire files, perform targeted replacements, or delete snippets depending on the JSON/raw payload provided.
|
|
31
31
|
- delete_file(file_path): Use this to remove files when needed
|
|
32
32
|
- grep(search_string, directory="."): Use this to recursively search for a string across files starting from the specified directory, capping results at 200 matches.
|
|
33
|
-
- code_map(directory="."): Use this to generate a code map for the specified directory.
|
|
34
33
|
|
|
35
34
|
Tool Usage Instructions:
|
|
36
35
|
|
|
@@ -79,5 +79,21 @@
|
|
|
79
79
|
"url": "https://api.cerebras.ai/v1",
|
|
80
80
|
"api_key": "$CEREBRAS_API_KEY"
|
|
81
81
|
}
|
|
82
|
+
},
|
|
83
|
+
"Cerebras-Qwen3-235b-a22b-instruct-2507": {
|
|
84
|
+
"type": "custom_openai",
|
|
85
|
+
"name": "qwen-3-235b-a22b-instruct-2507",
|
|
86
|
+
"custom_endpoint": {
|
|
87
|
+
"url": "https://api.cerebras.ai/v1",
|
|
88
|
+
"api_key": "$CEREBRAS_API_KEY"
|
|
89
|
+
}
|
|
90
|
+
},
|
|
91
|
+
"Cerebras-Qwen-3-32b": {
|
|
92
|
+
"type": "custom_openai",
|
|
93
|
+
"name": "qwen-3-32b",
|
|
94
|
+
"custom_endpoint": {
|
|
95
|
+
"url": "https://api.cerebras.ai/v1",
|
|
96
|
+
"api_key": "$CEREBRAS_API_KEY"
|
|
97
|
+
}
|
|
82
98
|
}
|
|
83
99
|
}
|
|
@@ -347,7 +347,7 @@ def _delete_file(context: RunContext, file_path: str = "") -> Dict[str, Any]:
|
|
|
347
347
|
|
|
348
348
|
class EditFileOutput(BaseModel):
|
|
349
349
|
success: bool | None
|
|
350
|
-
|
|
350
|
+
path: str | None
|
|
351
351
|
message: str | None
|
|
352
352
|
changed: bool | None
|
|
353
353
|
diff: str | None
|
|
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.76 → code_puppy-0.0.77}/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
|