[claude] Fix syntax errors in Ollama provider wiring (#223) #224
Reference in New Issue
Block a user
Delete Branch "claude/issue-223"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Fixes #223
What
The
feat(provider): first-class Ollama support + Gemma 4 defaultscommit introduced two syntax errors inagent/auxiliary_client.py:The
***is a redacted variable name and the separating comma was missing, causing aSyntaxErrorthat prevented the module from loading and cascaded to break all 5 tool module imports.Fix
Replace both occurrences with the correct
api_key=api_key, base_url=base_url:Testing
python3 -m py_compile agent/auxiliary_client.pynow passes cleanly.