Files
computer/libs/python/agent2/agent/__init__.py
Dillon DuPont 0971464c8d 0.4.0b2
2025-07-27 15:20:24 -04:00

20 lines
356 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.4.0b2"