10 lines
149 B
Python
10 lines
149 B
Python
"""
|
|
PicoGent - Minimal AI coding agent
|
|
"""
|
|
|
|
__version__ = "0.1.0"
|
|
|
|
from .agent import Agent
|
|
from .config import Config
|
|
|
|
__all__ = ["Agent", "Config"] |