Files
computer/libs/python/agent2/agent/__init__.py
2025-07-25 19:01:20 -04:00

20 lines
354 B
Python

"""
agent - Decorator-based Computer Use Agent with liteLLM integration
"""
from .decorators import agent_loop
from .agent import ComputerAgent
from .types import Messages, AgentResponse
# Import loops to register them
from . import loops
__all__ = [
"agent_loop",
"ComputerAgent",
"Messages",
"AgentResponse"
]
__version__ = "0.1.0"