Skip to main content

Send user form to LLM

Send a user form to your LLM application and wait for a response before continuing the Wrkflow.

Application

  • Wrkflow Tools

Inputs (what you have)

NameDescriptionData TypeRequired?Example
Form JSON SchemaJSON Schema of the form data to send to the LLMText(Long)Yes{ "type": "object", "properties": { "name": { "type": "string", "title": "Name", "description": "Enter your full name", "maxLength": 100 }, "email": { "type": "string", "title": "Email", "description": "Enter your email address", "format": "email" } }, "required": ["name"] }
Wait time limitThe amount of time this action should wait for a response in hours. Note the maximum wait time is 7 days (in hours). Example: 0.05Number with decimalsYes0.05

Outputs (what you get)

NameDescriptionData TypeRequired?Example
Form responseJSON data from the form responseText (Long)No{"name":"John","gender":"male","interests":["coding"],"country":"ca"}

Outcomes

NameDescription
SuccessThis status is selected if the job has successfully completed.
No resultThis status is selected if the job has successfully completed but no result was produced.

Requirements

  • N/A