i have created bpmn model where i need to add escalltion app.
before adding that i have an agent which is generating some output and agent is mentioning i need more information for generate output so i that case i need to create esacllation for user in action center with agent output which is in variable content and then user will update his/her commnets in textbox and submit for next step.
check below ss
You can try this approach
Run the Agent and store its output in a variable, e.g., AgentOutput and check if the output is incomplete or contains “need more info”. If yes then use Create Form Task activity in UiPath to send AgentOutput to Action Center and in the form show the agent message (read-only) + add a text box for user comments then use Wait for Form Task and Resume to pause the process until the user submits details. Once user fills in comments, capture them in a variable like UserComments and continue the workflow using both AgentOutput and UserComments.