feat(agent): Multi agent sdk (#976)

Co-authored-by: xtyuns <xtyuns@163.com>
Co-authored-by: Fangyin Cheng <staneyffer@gmail.com>
Co-authored-by: csunny <cfqsunny@163.com>
Co-authored-by: qidanrui <qidanrui@gmail.com>
This commit is contained in:
明天
2023-12-27 16:25:55 +08:00
committed by GitHub
parent 69fb97e508
commit 9aec636b02
79 changed files with 6359 additions and 121 deletions

View File

@@ -34,10 +34,14 @@ def initialize_components(
# system_app.register(DefaultRAGGraphFactory)
from dbgpt.agent.controller import module_agent
from dbgpt.serve.agent.hub.controller import module_agent
system_app.register_instance(module_agent)
from dbgpt.serve.agent.agents.controller import multi_agents
system_app.register_instance(multi_agents)
_initialize_embedding_model(
param, system_app, embedding_model_name, embedding_model_path
)