- Implemented ReAct loop in agent.py - Added Anthropic provider using httpx (no SDK) - Created tools: read, write, edit, bash - Added session management with JSONL format - Included configuration system with env var support - Added CLI interface and example usage - Minimal dependencies: only httpx
9 lines
230 B
JSON
9 lines
230 B
JSON
{
|
|
"provider": "anthropic",
|
|
"model": "claude-sonnet-4-20250514",
|
|
"api_key": "env:ANTHROPIC_API_KEY",
|
|
"max_tokens": 8192,
|
|
"max_iterations": 20,
|
|
"workspace": ".",
|
|
"system_prompt": "You are a helpful coding assistant."
|
|
} |