Skip to main content
ExampleIntermediate1 min readUpdated Apr 4, 2026
manualllmtext-generationsummary

AI Summary

Manual workflow that sends text to an LLM and returns the response

Download ZIP · 1.3 KB

Full JSON

Click to expand
{
"description": "Manual workflow that sends text to an LLM and returns the response",
"tags": [
"manual",
"llm",
"text-generation",
"summary"
],
"document": {
"name": "AI Summary",
"enabled": true,
"log_level": "info",
"trigger": {
"type": "manual"
},
"workflowInput": [
{
"name": "prompt",
"description": "User prompt",
"schema": {
"type": "string",
"required": true
}
}
],
"steps": [
{
"condition": {
"expr": "true",
"onFailure": "throw",
"resultType": "any"
},
"action": {
"actionType": "actions/ai/llm/chat/generate",
"actions/ai/llm/chat/generate": {
"is_advanced": false,
"text": {
"expr": "prompt",
"onFailure": "throw",
"resultType": "any"
}
}
}
}
],
"returnExpression": {
"expr": "step(0).choices[0].message.content"
}
}
}
TypeWorkflow
Rules1
Channelany
Version1.0.0
Download ZIP
manual-llm1.3 KB
On this page