mirror of
https://github.com/trycua/computer.git
synced 2026-02-13 09:09:28 -06:00
12 lines
217 B
Python
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"]
|