mirror of
https://github.com/trycua/computer.git
synced 2026-01-06 13:30:06 -06:00
10 lines
178 B
Python
10 lines
178 B
Python
"""
|
|
Adapters package for agent - Custom LLM adapters for LiteLLM
|
|
"""
|
|
|
|
from .huggingfacelocal_adapter import HuggingFaceLocalAdapter
|
|
|
|
__all__ = [
|
|
"HuggingFaceLocalAdapter",
|
|
]
|