mirror of
https://github.com/trycua/lume.git
synced 2026-04-22 19:50:07 -05: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",
|
|
]
|