spawnllm 0.1.1__tar.gz → 0.1.2__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.
- {spawnllm-0.1.1 → spawnllm-0.1.2}/PKG-INFO +1 -1
- {spawnllm-0.1.1 → spawnllm-0.1.2}/pyproject.toml +1 -1
- {spawnllm-0.1.1 → spawnllm-0.1.2}/spawnllm/backends/claude.py +3 -1
- {spawnllm-0.1.1 → spawnllm-0.1.2}/LICENSE +0 -0
- {spawnllm-0.1.1 → spawnllm-0.1.2}/README.md +0 -0
- {spawnllm-0.1.1 → spawnllm-0.1.2}/spawnllm/__init__.py +0 -0
- {spawnllm-0.1.1 → spawnllm-0.1.2}/spawnllm/__main__.py +0 -0
- {spawnllm-0.1.1 → spawnllm-0.1.2}/spawnllm/backends/__init__.py +0 -0
- {spawnllm-0.1.1 → spawnllm-0.1.2}/spawnllm/backends/base.py +0 -0
- {spawnllm-0.1.1 → spawnllm-0.1.2}/spawnllm/backends/codex.py +0 -0
- {spawnllm-0.1.1 → spawnllm-0.1.2}/spawnllm/backends/registry.py +0 -0
- {spawnllm-0.1.1 → spawnllm-0.1.2}/spawnllm/call.py +0 -0
- {spawnllm-0.1.1 → spawnllm-0.1.2}/spawnllm/cli.py +0 -0
- {spawnllm-0.1.1 → spawnllm-0.1.2}/spawnllm/mlx/__init__.py +0 -0
- {spawnllm-0.1.1 → spawnllm-0.1.2}/spawnllm/mlx/codec.py +0 -0
- {spawnllm-0.1.1 → spawnllm-0.1.2}/spawnllm/mlx/engine.py +0 -0
- {spawnllm-0.1.1 → spawnllm-0.1.2}/spawnllm/mlx/fuse.py +0 -0
- {spawnllm-0.1.1 → spawnllm-0.1.2}/spawnllm/mlx/patches.py +0 -0
- {spawnllm-0.1.1 → spawnllm-0.1.2}/spawnllm/proc.py +0 -0
- {spawnllm-0.1.1 → spawnllm-0.1.2}/spawnllm/py.typed +0 -0
- {spawnllm-0.1.1 → spawnllm-0.1.2}/spawnllm/structured.py +0 -0
- {spawnllm-0.1.1 → spawnllm-0.1.2}/spawnllm/types.py +0 -0
|
@@ -94,7 +94,9 @@ class ClaudeCliBackend(LlmBackend):
|
|
|
94
94
|
return parse_structured_output(raw, response_model)
|
|
95
95
|
|
|
96
96
|
def env(self) -> dict[str, str]:
|
|
97
|
-
|
|
97
|
+
# CLAUDE_CODE_SIMPLE=1 breaks claude.ai keychain auth ("Not logged in")
|
|
98
|
+
# on current CLIs; --setting-sources ""/--strict-mcp-config already trim startup.
|
|
99
|
+
return {}
|
|
98
100
|
|
|
99
101
|
def build_argv(self, content: str, *, model: str) -> list[str]:
|
|
100
102
|
"""Build the inline ``-p`` argv for the sentiment/pushback scoring path."""
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|