code-puppy 0.0.65__tar.gz → 0.0.66__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.65 → code_puppy-0.0.66}/PKG-INFO +3 -3
- {code_puppy-0.0.65 → code_puppy-0.0.66}/README.md +2 -2
- {code_puppy-0.0.65 → code_puppy-0.0.66}/pyproject.toml +1 -1
- {code_puppy-0.0.65 → code_puppy-0.0.66}/.gitignore +0 -0
- {code_puppy-0.0.65 → code_puppy-0.0.66}/LICENSE +0 -0
- {code_puppy-0.0.65 → code_puppy-0.0.66}/code_puppy/__init__.py +0 -0
- {code_puppy-0.0.65 → code_puppy-0.0.66}/code_puppy/agent.py +0 -0
- {code_puppy-0.0.65 → code_puppy-0.0.66}/code_puppy/agent_prompts.py +0 -0
- {code_puppy-0.0.65 → code_puppy-0.0.66}/code_puppy/command_line/__init__.py +0 -0
- {code_puppy-0.0.65 → code_puppy-0.0.66}/code_puppy/command_line/file_path_completion.py +0 -0
- {code_puppy-0.0.65 → code_puppy-0.0.66}/code_puppy/command_line/meta_command_handler.py +0 -0
- {code_puppy-0.0.65 → code_puppy-0.0.66}/code_puppy/command_line/model_picker_completion.py +0 -0
- {code_puppy-0.0.65 → code_puppy-0.0.66}/code_puppy/command_line/prompt_toolkit_completion.py +0 -0
- {code_puppy-0.0.65 → code_puppy-0.0.66}/code_puppy/command_line/utils.py +0 -0
- {code_puppy-0.0.65 → code_puppy-0.0.66}/code_puppy/config.py +0 -0
- {code_puppy-0.0.65 → code_puppy-0.0.66}/code_puppy/main.py +0 -0
- {code_puppy-0.0.65 → code_puppy-0.0.66}/code_puppy/model_factory.py +0 -0
- {code_puppy-0.0.65 → code_puppy-0.0.66}/code_puppy/models.json +0 -0
- {code_puppy-0.0.65 → code_puppy-0.0.66}/code_puppy/session_memory.py +0 -0
- {code_puppy-0.0.65 → code_puppy-0.0.66}/code_puppy/tools/__init__.py +0 -0
- {code_puppy-0.0.65 → code_puppy-0.0.66}/code_puppy/tools/command_runner.py +0 -0
- {code_puppy-0.0.65 → code_puppy-0.0.66}/code_puppy/tools/common.py +0 -0
- {code_puppy-0.0.65 → code_puppy-0.0.66}/code_puppy/tools/file_modifications.py +0 -0
- {code_puppy-0.0.65 → code_puppy-0.0.66}/code_puppy/tools/file_operations.py +0 -0
- {code_puppy-0.0.65 → code_puppy-0.0.66}/code_puppy/tools/ts_code_map.py +0 -0
- {code_puppy-0.0.65 → code_puppy-0.0.66}/code_puppy/tools/web_search.py +0 -0
- {code_puppy-0.0.65 → code_puppy-0.0.66}/code_puppy/version_checker.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: code-puppy
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.66
|
|
4
4
|
Summary: Code generation agent
|
|
5
5
|
Author: Michael Pfaffenberger
|
|
6
6
|
License: MIT
|
|
@@ -73,8 +73,8 @@ export YOLO_MODE=true # to bypass the safety confirmation prompt when running sh
|
|
|
73
73
|
|
|
74
74
|
# or ...
|
|
75
75
|
|
|
76
|
-
AZURE_OPENAI_API_KEY=...
|
|
77
|
-
AZURE_OPENAI_ENDPOINT=...
|
|
76
|
+
export AZURE_OPENAI_API_KEY=...
|
|
77
|
+
export AZURE_OPENAI_ENDPOINT=...
|
|
78
78
|
|
|
79
79
|
code-puppy --interactive
|
|
80
80
|
```
|
|
@@ -40,8 +40,8 @@ export YOLO_MODE=true # to bypass the safety confirmation prompt when running sh
|
|
|
40
40
|
|
|
41
41
|
# or ...
|
|
42
42
|
|
|
43
|
-
AZURE_OPENAI_API_KEY=...
|
|
44
|
-
AZURE_OPENAI_ENDPOINT=...
|
|
43
|
+
export AZURE_OPENAI_API_KEY=...
|
|
44
|
+
export AZURE_OPENAI_ENDPOINT=...
|
|
45
45
|
|
|
46
46
|
code-puppy --interactive
|
|
47
47
|
```
|
|
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.65 → code_puppy-0.0.66}/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
|
|
File without changes
|