From 7e5ee5010b2b98f855320c8f6544ec5fba45f09d Mon Sep 17 00:00:00 2001 From: Dillon DuPont Date: Mon, 11 Aug 2025 15:57:16 -0400 Subject: [PATCH] added human adapter --- libs/python/agent/agent/adapters/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libs/python/agent/agent/adapters/__init__.py b/libs/python/agent/agent/adapters/__init__.py index 2d9abbe3..3a5c0301 100644 --- a/libs/python/agent/agent/adapters/__init__.py +++ b/libs/python/agent/agent/adapters/__init__.py @@ -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", ]