Files
computer/libs/python/agent2/agent/adapters/__init__.py
2025-07-25 19:01:20 -04:00

10 lines
178 B
Python

"""
Adapters package for agent - Custom LLM adapters for LiteLLM
"""
from .huggingfacelocal_adapter import HuggingFaceLocalAdapter
__all__ = [
"HuggingFaceLocalAdapter",
]