Files
multiAgentTry/backend/app/adapters/__init__.py
T

9 lines
162 B
Python
Raw Normal View History

2026-03-09 17:32:11 +08:00
"""Agent 适配器模块"""
from .native_llm_agent import NativeLLMAgent, NativeLLMAgentFactory
__all__ = [
"NativeLLMAgent",
"NativeLLMAgentFactory"
]