microsoft / FLAML

A fast library for AutoML and tuning. Join our Discord: https://discord.gg/Cppx2vSPVP.
https://microsoft.github.io/FLAML/
MIT License
3.87k stars 504 forks source link

Can one-way message passing be implemented in AutoGen? #1211

Closed Master-PLC closed 1 year ago

Master-PLC commented 1 year ago

I would like to use AutoGen to implement the style of CAMEL's task_specifier, which means sending one-way instructions through a UserProxyAgent to an AssistantAgent named task_specifier, and then having the task_specifier send out one-way messages as the initial conversation for two other auto-reply AssistantAgents. However, it seems that I haven't found a mechanism for one-way message passing in auto_reply.

sonichi commented 1 year ago

You can use send(..., request_reply=False) https://microsoft.github.io/FLAML/docs/reference/autogen/agentchat/responsive_agent#send

Master-PLC commented 1 year ago

Thank you for your suggestions~