I have a little problem and I hope can help me. My problem is: I have the node “on form submission”, and I do not only want to collect information from my users. The task is to have a form, where the users can fill their questions, and have the possibility to an AI agent to give them the answers within the same form. I have set two parameters as you can see in the image.
Since you are using On Form Submission (which is a trigger node), I would advise using a ‘Next Form Page’ node so that it has a previous node you can input the data from within the new form, and make sure your previous node’s data is pinned during testing to make it easy for you to drag and drop, let me know if this helps!
Nice flow! One thing to watch when scaling — if you’re hitting this form with high-volume submissions, add a delay node between form trigger and AI Agent to respect rate limits on your LLM (Groq/OpenAI gets picky with rapid calls). Also consider if you need multi-step forms where the AI response feeds back into the next form page — that’s where webhooks become useful instead of the simple trigger. How are you planning to handle concurrent submissions?