code-puppy 0.0.47__tar.gz → 0.0.49__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.47 → code_puppy-0.0.49}/PKG-INFO +1 -1
- {code_puppy-0.0.47 → code_puppy-0.0.49}/code_puppy/config.py +1 -1
- {code_puppy-0.0.47 → code_puppy-0.0.49}/code_puppy/model_factory.py +2 -0
- {code_puppy-0.0.47 → code_puppy-0.0.49}/pyproject.toml +1 -1
- {code_puppy-0.0.47 → code_puppy-0.0.49}/.gitignore +0 -0
- {code_puppy-0.0.47 → code_puppy-0.0.49}/LICENSE +0 -0
- {code_puppy-0.0.47 → code_puppy-0.0.49}/README.md +0 -0
- {code_puppy-0.0.47 → code_puppy-0.0.49}/code_puppy/__init__.py +0 -0
- {code_puppy-0.0.47 → code_puppy-0.0.49}/code_puppy/agent.py +0 -0
- {code_puppy-0.0.47 → code_puppy-0.0.49}/code_puppy/agent_prompts.py +0 -0
- {code_puppy-0.0.47 → code_puppy-0.0.49}/code_puppy/command_line/__init__.py +0 -0
- {code_puppy-0.0.47 → code_puppy-0.0.49}/code_puppy/command_line/file_path_completion.py +0 -0
- {code_puppy-0.0.47 → code_puppy-0.0.49}/code_puppy/command_line/meta_command_handler.py +0 -0
- {code_puppy-0.0.47 → code_puppy-0.0.49}/code_puppy/command_line/model_picker_completion.py +0 -0
- {code_puppy-0.0.47 → code_puppy-0.0.49}/code_puppy/command_line/prompt_toolkit_completion.py +0 -0
- {code_puppy-0.0.47 → code_puppy-0.0.49}/code_puppy/command_line/utils.py +0 -0
- {code_puppy-0.0.47 → code_puppy-0.0.49}/code_puppy/main.py +0 -0
- {code_puppy-0.0.47 → code_puppy-0.0.49}/code_puppy/models.json +0 -0
- {code_puppy-0.0.47 → code_puppy-0.0.49}/code_puppy/session_memory.py +0 -0
- {code_puppy-0.0.47 → code_puppy-0.0.49}/code_puppy/tools/__init__.py +0 -0
- {code_puppy-0.0.47 → code_puppy-0.0.49}/code_puppy/tools/code_map.py +0 -0
- {code_puppy-0.0.47 → code_puppy-0.0.49}/code_puppy/tools/command_runner.py +0 -0
- {code_puppy-0.0.47 → code_puppy-0.0.49}/code_puppy/tools/common.py +0 -0
- {code_puppy-0.0.47 → code_puppy-0.0.49}/code_puppy/tools/file_modifications.py +0 -0
- {code_puppy-0.0.47 → code_puppy-0.0.49}/code_puppy/tools/file_operations.py +0 -0
- {code_puppy-0.0.47 → code_puppy-0.0.49}/code_puppy/tools/web_search.py +0 -0
- {code_puppy-0.0.47 → code_puppy-0.0.49}/code_puppy/version_checker.py +0 -0
|
@@ -55,7 +55,7 @@ def get_owner_name():
|
|
|
55
55
|
# --- MODEL STICKY EXTENSION STARTS HERE ---
|
|
56
56
|
def get_model_name():
|
|
57
57
|
"""Returns the last used model name stored in config, or None if unset."""
|
|
58
|
-
return get_value("model") or "gpt-
|
|
58
|
+
return get_value("model") or "gpt-4.1"
|
|
59
59
|
|
|
60
60
|
def set_model_name(model: str):
|
|
61
61
|
"""Sets the model name in the persistent config file."""
|
|
@@ -138,6 +138,8 @@ def get_custom_config(model_config):
|
|
|
138
138
|
ca_certs_path = None
|
|
139
139
|
if "ca_certs_path" in custom_config:
|
|
140
140
|
ca_certs_path = custom_config.get("ca_certs_path")
|
|
141
|
+
if ca_certs_path.lower() == "false":
|
|
142
|
+
ca_certs_path = False
|
|
141
143
|
|
|
142
144
|
api_key = None
|
|
143
145
|
if "api_key" in custom_config:
|
|
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.47 → code_puppy-0.0.49}/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
|