Obtener y Resumir
Múltiples pasos: obtención por HTTP -> resumen con LLM -> devuelve el resumen
manual multi-step http llm summarization
Qué está incluido
| Campo | Valor |
|---|---|
| Nombre | Obtener y Resumir |
| Tipo | Workflow |
| Trigger | manual |
| Pasos | 2 |
| Entradas | 1 |
JSON Completo
Clic para expandir
{
"description": "Multi-step: HTTP fetch → LLM summarize → return summary",
"tags": [
"manual",
"multi-step",
"http",
"llm",
"summarization"
],
"document": {
"name": "Fetch and Summarize",
"enabled": true,
"log_level": "info",
"trigger": {
"type": "manual"
},
"workflowInput": [
{
"name": "url",
"description": "URL to fetch",
"schema": {
"type": "string",
"required": true
}
}
],
"steps": [
{
"condition": {
"expr": "true",
"onFailure": "throw",
"resultType": "any"
},
"action": {
"actionType": "actions/network/http/request/send",
"actions/network/http/request/send": {
"method": "GET",
"url": {
"expr": "url",
"onFailure": "throw",
"resultType": "any"
},
"headers": [],
"returnBuffer": false,
"cache": false
}
}
},
{
"condition": {
"expr": "step_ok(0)",
"onFailure": "throw",
"resultType": "any"
},
"action": {
"actionType": "actions/ai/llm/chat/generate",
"actions/ai/llm/chat/generate": {
"is_advanced": false,
"text": {
"expr": "'Summarize this:\\n' + json_stringify(step_data(0, \"\"))",
"onFailure": "throw",
"resultType": "any"
}
}
}
}
],
"returnExpression": {
"expr": "step_data(1, \"choices.0.message.content\")"
}
}
}
Como Importar
- Descargue el archivo ZIP usando el botón de arriba
- Navegue a Configuración de la Empresa → Transferencia de Datos en su panel de AutoTalk
- Haga clic en Importar y seleccione el archivo ZIP descargado
- Revise el resumen de importación y confirme
- Todos los IDs de documentos se remapean automáticamente — no se necesita edición manual de IDs