Buscar e Resumir
Múltiplas etapas: busca via HTTP -> resumo com LLM -> retorna o resumo
manual multi-step http llm summarization
O que está incluído
| Campo | Valor |
|---|---|
| Nome | Buscar e Resumir |
| Tipo | Workflow |
| Trigger | manual |
| Etapas | 2 |
| Entradas | 1 |
JSON Completo
Clique 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
- Baixe o arquivo ZIP usando o botão acima
- Navegue até Configurações da Empresa → Transferência de Dados no seu painel AutoTalk
- Clique em Importar e selecione o arquivo ZIP baixado
- Revise o resumo da importação e confirme
- Todos os IDs de documentos são remapeados automaticamente — nenhuma edição manual de IDs é necessária