Saltar al contenido principal

Obtener y Resumir

Múltiples pasos: obtención por HTTP -> resumen con LLM -> devuelve el resumen

manual multi-step http llm summarization

Descargar ZIP

Qué está incluido

CampoValor
NombreObtener y Resumir
TipoWorkflow
Triggermanual
Pasos2
Entradas1

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

  1. Descargue el archivo ZIP usando el botón de arriba
  2. Navegue a Configuración de la Empresa → Transferencia de Datos en su panel de AutoTalk
  3. Haga clic en Importar y seleccione el archivo ZIP descargado
  4. Revise el resumen de importación y confirme
  5. Todos los IDs de documentos se remapean automáticamente — no se necesita edición manual de IDs