added human adapter

This commit is contained in:
Dillon DuPont
2025-08-11 15:57:16 -04:00
parent d8b1792cc5
commit 7e5ee5010b

View File

@@ -3,7 +3,9 @@ Adapters package for agent - Custom LLM adapters for LiteLLM
"""
from .huggingfacelocal_adapter import HuggingFaceLocalAdapter
from .human_adapter import HumanAdapter
__all__ = [
"HuggingFaceLocalAdapter",
"HumanAdapter",
]