picogent-py/picogent/providers/__init__.py
Markov 5417980b76 Initial implementation of PicoGent - minimal AI coding agent
- 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
2026-02-22 23:18:02 +01:00

8 lines
156 B
Python

"""
PicoGent Providers Package
"""
from .base import BaseProvider
from .anthropic import AnthropicProvider
__all__ = ["BaseProvider", "AnthropicProvider"]