code-puppy 0.0.76__py3-none-any.whl → 0.0.77__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.
@@ -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
 
code_puppy/models.json CHANGED
@@ -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
- file_path: str | None
350
+ path: str | None
351
351
  message: str | None
352
352
  changed: bool | None
353
353
  diff: str | None
@@ -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
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: code-puppy
3
- Version: 0.0.76
3
+ Version: 0.0.77
4
4
  Summary: Code generation agent
5
5
  Author: Michael Pfaffenberger
6
6
  License: MIT
@@ -1,10 +1,10 @@
1
1
  code_puppy/__init__.py,sha256=-ANvE6Xe5NlWDIRCIfL1x-rgtCZ6zM2Ye9NphFoULSY,82
2
2
  code_puppy/agent.py,sha256=kkuiYbI2n5VOwzimq3c7ZVj-kzf8VtFE4v7e4vInRag,4007
3
- code_puppy/agent_prompts.py,sha256=DnPNubiFtD6Ot76cIsxedJEaEVYS5AaxR3JWJM5nXNg,6925
3
+ code_puppy/agent_prompts.py,sha256=13YIpTZa3R3lg60-fdkll7t7hgSBtQL0M53wcE1gzyQ,6834
4
4
  code_puppy/config.py,sha256=r5nw5ChOP8xd_K5yo8U5OtO2gy2bFhARiyNtDp1JrwQ,5013
5
5
  code_puppy/main.py,sha256=VTR-aqjmjqSt_sLBcDXP2fqvs0ZExdKqQL3REkY238E,11325
6
6
  code_puppy/model_factory.py,sha256=P2E3KgTHMVaMhHyGHmdascjYmdRxUKBWotlP61i-03A,8291
7
- code_puppy/models.json,sha256=RStp5kNQER1NqZ3CG-H2GVt5okwB8CD1HxuVHWoecco,2017
7
+ code_puppy/models.json,sha256=NwdV7vit8j4eyOFPLXJFEKtKuVpqHruTYmX8lG1sOnU,2452
8
8
  code_puppy/session_memory.py,sha256=4sgAAjbXdLSi8hETpd56tgtrG6hqMUuZWDlJOu6BQjA,2735
9
9
  code_puppy/version_checker.py,sha256=aRGulzuY4C4CdFvU1rITduyL-1xTFsn4GiD1uSfOl_Y,396
10
10
  code_puppy/command_line/__init__.py,sha256=y7WeRemfYppk8KVbCGeAIiTuiOszIURCDjOMZv_YRmU,45
@@ -17,12 +17,12 @@ code_puppy/command_line/utils.py,sha256=7eyxDHjPjPB9wGDJQQcXV_zOsGdYsFgI0SGCetVm
17
17
  code_puppy/tools/__init__.py,sha256=ozIGpLM7pKSjH4UeojkTodhfVYZeNzMsLtK_oyw41HA,456
18
18
  code_puppy/tools/command_runner.py,sha256=S-kB8S_mxHEK12tax6v54uziyNpl5-n2NzE8PAq-J5k,7302
19
19
  code_puppy/tools/common.py,sha256=M53zhiXZAmPdvi1Y_bzCxgvEmifOvRRJvYPARYRZqHw,2253
20
- code_puppy/tools/file_modifications.py,sha256=zKsjA16PFwCYhXoCTe7vBYBMBgqjKTq7f3q9uosHtwM,13315
20
+ code_puppy/tools/file_modifications.py,sha256=qCfkZ7BxTG8U4xydHzS44UtOioj8XvhRKgjoOAnMHTo,13310
21
21
  code_puppy/tools/file_operations.py,sha256=5ESOCS3m4Lpnvrg2XiJAx0m4-0Yar6LZKIdyRCRjENM,11218
22
22
  code_puppy/tools/ts_code_map.py,sha256=o-u8p5vsYwitfDtVEoPS-7MwWn2xHzwtIQLo1_WMhQs,17647
23
- code_puppy-0.0.76.data/data/code_puppy/models.json,sha256=RStp5kNQER1NqZ3CG-H2GVt5okwB8CD1HxuVHWoecco,2017
24
- code_puppy-0.0.76.dist-info/METADATA,sha256=IlZC8JIRm9XLIjBWgsMivGLQGzqcETGEV7N7dgIx1jc,6512
25
- code_puppy-0.0.76.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
26
- code_puppy-0.0.76.dist-info/entry_points.txt,sha256=d8YkBvIUxF-dHNJAj-x4fPEqizbY5d_TwvYpc01U5kw,58
27
- code_puppy-0.0.76.dist-info/licenses/LICENSE,sha256=31u8x0SPgdOq3izJX41kgFazWsM43zPEF9eskzqbJMY,1075
28
- code_puppy-0.0.76.dist-info/RECORD,,
23
+ code_puppy-0.0.77.data/data/code_puppy/models.json,sha256=NwdV7vit8j4eyOFPLXJFEKtKuVpqHruTYmX8lG1sOnU,2452
24
+ code_puppy-0.0.77.dist-info/METADATA,sha256=d16V_O5nidwrIITCMsOtv0Q0cxky7vGrFujDIE0Aeww,6512
25
+ code_puppy-0.0.77.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
26
+ code_puppy-0.0.77.dist-info/entry_points.txt,sha256=d8YkBvIUxF-dHNJAj-x4fPEqizbY5d_TwvYpc01U5kw,58
27
+ code_puppy-0.0.77.dist-info/licenses/LICENSE,sha256=31u8x0SPgdOq3izJX41kgFazWsM43zPEF9eskzqbJMY,1075
28
+ code_puppy-0.0.77.dist-info/RECORD,,