-
Hello folks! I’m learning Autogen and experimenting with a small project that uses the Sequential Workflow approach (referencing the official docs) to make three agents communicate in this order: I’m using a pub-sub approach, and the final UserAgent acts as a closure agent that queues the final result to a service endpoint. While implementing this in FastAPI, I always receive a 400 Bad Request error. In my run_workflow function, I compile the agents and see the log message “ValidatorAgent initialized,” but never any log from the ConversatorAgent—so it appears the pipeline doesn’t progress to that point before publishing the message. I’ve tried debugging and ensuring my implementation is correct, but I can’t spot the mistake. Any help would be appreciated. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Have you tried to run this without fast api? I saw two definitions of Message type, is that intentional? Looks like the conversor agent was never created so the message has never arrived to it. |
Beta Was this translation helpful? Give feedback.
Have you tried to run this without fast api?
I saw two definitions of Message type, is that intentional?
Looks like the conversor agent was never created so the message has never arrived to it.