eosphoros-ai / DB-GPT

AI Native Data App Development framework with AWEL(Agentic Workflow Expression Language) and Agents
https://docs.dbgpt.site
MIT License
12.42k stars 1.62k forks source link

[Feature] Multi-agent cooperative planning method #1626

Open yuerf opened 3 weeks ago

yuerf commented 3 weeks ago

Search before asking

Description

1、目前dbgpt采用的planner_agent采用的是Decomposition First (首先分解法),是否考虑增添Interleaved(交错分解),类似于react等其他任务分解方式; 2、添加人工交互模式,可以对生成的任务计划进行修正,就像autogen关于多智能体协同的多种方式;

Use case

No response

Related issues

No response

Feature Priority

None

Are you willing to submit PR?

fangyinc commented 3 weeks ago

您好 @yuerf ,感谢关注和建议。

  1. 关于 Agent 的 planning 模块,目前实现还比较简单,后面会逐步丰富。主要在:a. 接收环境反馈动态调整 plan,2. 多级 planning(planner 负责宏观层面的 plan),各个 agent 本身也具有 planning 能力(负责小的目标,做规划然后执行,并且能从成功和失败的 plan 中总结经验,ReAct 能力也在其中)
  2. 人工接入交互模式很重要,以后肯定会实现的。

不过目前精力有限,也希望大家来一起建设!