mirror of
https://github.com/trycua/computer.git
synced 2026-01-01 19:10:30 -06:00
20 lines
354 B
Python
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"
|