I have one main flow and a couple more flows, the agent is setup in such a way that it requires feedback and user inputs throughtout the process. Hence i have input and display blocks in sub flows as well.
But only the blocks available in main.flow the entry point flow are working.
Any help is appreciated.
Hi @amandayal,
Could you record an overview of your Agent setup and show an example of the issue in the Debugger tab? That would help us better understand what might be going wrong.
You can use the link below to record:
i have shared a recording on the provided link, please let me know if more information is needed
Hi @amandayal,
Thank you for the recording!
The Run Workflow block is mainly intended for running multiple sub-processes in parallel to reduce overall processing time. For example, instead of placing 50 Scrape URL blocks in sequence, you could use this block to scrape all 50 URLs at once. Because of that design, any user-facing blocks like Menu or User Input are skipped when a workflow is triggered via Run Workflow.
If your goal is simply to route a user to another workflow, using a Jump block would be a better approach.
I tried jump workflow, but using jump workflow, i cannot pass launch variables to the flow.
Hi @amandayal,
When using Jump blocks, there’s no need to introduce Launch Variables. You can continue using the same variables from the original workflow, as if you never left it.
Hope this helps!
if multiple workflows are chained together then the variables from first workflow would be available in the last one?
Hi @amandayal,
Yes, exactly! You got it right.