- 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
289 B
Python
11 lines
289 B
Python
"""
|
|
PicoGent Tools Package
|
|
"""
|
|
|
|
from .registry import Tool, ToolRegistry, registry
|
|
from .read import ReadTool
|
|
from .write import WriteTool
|
|
from .edit import EditTool
|
|
from .bash import BashTool
|
|
|
|
__all__ = ["Tool", "ToolRegistry", "registry", "ReadTool", "WriteTool", "EditTool", "BashTool"] |