Reconfiguration of the basic multi-agent architecture.

This commit is contained in:
戒酒的李白
2025-08-22 22:04:08 +08:00
parent bec01f8930
commit 7ae863a781
70 changed files with 6792 additions and 648 deletions
+10
View File
@@ -0,0 +1,10 @@
"""
LLM调用模块
支持多种大语言模型的统一接口
"""
from .base import BaseLLM
from .deepseek import DeepSeekLLM
from .openai_llm import OpenAILLM
__all__ = ["BaseLLM", "DeepSeekLLM", "OpenAILLM"]