- 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
11 lines
252 B
Python
11 lines
252 B
Python
"""
|
|
PicoGent - Minimal AI Coding Agent
|
|
"""
|
|
|
|
from .agent import Agent, run_agent
|
|
from .config import Config
|
|
from .session import Session
|
|
from .context import Context
|
|
|
|
__version__ = "0.1.0"
|
|
__all__ = ["Agent", "run_agent", "Config", "Session", "Context"] |