Files
computer/libs/python/agent/agent/adapters/__init__.py
2025-10-23 10:49:40 -07:00

16 lines
355 B
Python

"""
Adapters package for agent - Custom LLM adapters for LiteLLM
"""
from .cua_adapter import CUAAdapter
from .huggingfacelocal_adapter import HuggingFaceLocalAdapter
from .human_adapter import HumanAdapter
from .mlxvlm_adapter import MLXVLMAdapter
__all__ = [
"HuggingFaceLocalAdapter",
"HumanAdapter",
"MLXVLMAdapter",
"CUAAdapter",
]