Parallel Ai Assistant Node
I am making a AI chat application using the AI Assistant builder. I am using multiple assistants in a parallel node. Sometimes I get the “too many requests”. Question: Could this be because I make parallel multiple requests at the same time? Would it be better to do a sequential one after the other request? Any ideas are greatly appreciated.
Solution:
Jump to solution
Hi @01iver, In parallel node each node element's input is processed oncurrently and will run other nodes at the same time resulting in
to many requests. You can go with sequential or add execute Assistant based on different cases using Switch Node.
2 Replies
Solution
Hi @01iver, In parallel node each node element's input is processed oncurrently and will run other nodes at the same time resulting in
to many requests. You can go with sequential or add execute Assistant based on different cases using Switch Node.
@Gaurav Chadha Thanks for the advice. Appreciated.