modelscope / agentscope

Start building LLM-empowered multi-agent applications in an easier way.
https://doc.agentscope.io/
Apache License 2.0
4.81k stars 294 forks source link

[Feature]: 能不能像隔壁Qwen-Agent一样添加“调度”Agent? #405

Closed liyunhan closed 3 weeks ago

liyunhan commented 1 month ago

AgentScope is an open-source project. To involve a broader community, we recommend asking your questions in English.

Is your feature request related to a problem? Please describe. 现在的Agent调度还是固定的,确定好Agent的执行流程,能不能让Agent自己作为其它Agent的调度器?

Describe the solution you'd like 比如当用户随机提问的时候,一个总的Agent负责决定需要调用哪些功能模块Agent(像是套娃)

Describe alternatives you've considered 隔壁Qwen-Agent实现了类似的功能,但是感觉程序设计上AgentScope更具易用性,所以想你们两边能不能把思路融合一下~

Additional context Add any other context or screenshots about the feature request here.

DavdGao commented 1 month ago

Thanks for your attention.

We will take it into consideration.

DavdGao commented 1 month ago

Update: We will add an example for the agent router

liyunhan commented 1 month ago

@DavdGao

Update: We will add an example for the agent router

感谢大佬,以及有点疑惑,AgentScope和Qwen-agent没记错的话都是咱们通义千问团队的吧?两个项目算是独立并行?区别在哪儿?

DavdGao commented 1 month ago

@DavdGao

Update: We will add an example for the agent router

感谢大佬,以及有点疑惑,AgentScope和Qwen-agent没记错的话都是咱们通义千问团队的吧?两个项目算是独立并行?区别在哪儿?

qwen-agent 从qwen模型本身出发,在加强以及enable一些新的能力,包括但不限于context length、使用工具; agentscope专注于multi-agent,多个agent之间的配合,如何更加稳定、高效,以及易用。即使同一个事情,譬如调用工具,由于实际应用的要求/限制等,可能需要在不同的层面去实现。

liyunhan commented 1 month ago

@DavdGao

Update: We will add an example for the agent router

感谢大佬,以及有点疑惑,AgentScope和Qwen-agent没记错的话都是咱们通义千问团队的吧?两个项目算是独立并行?区别在哪儿?

qwen-agent 从qwen模型本身出发,在加强以及enable一些新的能力,包括但不限于context length、使用工具; agentscope专注于multi-agent,多个agent之间的配合,如何更加稳定、高效,以及易用。即使同一个事情,譬如调用工具,由于实际应用的要求/限制等,可能需要在不同的层面去实现。

qwen-agent倾向于能力探索,agentscope倾向于工程实践、应用落地,可以这样理解吧?

DavdGao commented 3 weeks ago

Update: The router agent is implemented as an example in PR #416

liyunhan commented 3 weeks ago

Update: The router agent is implemented as an example in PR #416

感谢项目组