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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: spawnllm
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: Subshell + MLX LLM-calling backends (Claude/Codex CLI, local MLX) shared across tools.
5
5
  Keywords:
6
6
  Author: Yasyf Mohamedali
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "spawnllm"
3
- version = "0.1.1"
3
+ version = "0.1.2"
4
4
  description = "Subshell + MLX LLM-calling backends (Claude/Codex CLI, local MLX) shared across tools."
5
5
  readme = "README.md"
6
6
  license = "MIT"
@@ -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
- return {"CLAUDE_CODE_SIMPLE": "1"}
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