Files
computer/libs/python/agent/agent/loops/__init__.py
2025-07-28 10:17:04 -04:00

12 lines
217 B
Python

"""
Agent loops for agent
"""
# Import the loops to register them
from . import anthropic
from . import openai
from . import uitars
from . import omniparser
__all__ = ["anthropic", "openai", "uitars", "omniparser"]