01iver
01iver7mo ago

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:
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.
No description
Jump to solution
2 Replies
Solution
Gaurav Chadha
Gaurav Chadha7mo ago
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.
No description
01iver
01iver7mo ago
@Gaurav Chadha Thanks for the advice. Appreciated.