- Introdução
- Introdução
- Modelagem de processos com BPMN
- Noções Básicas sobre Modelagem de Processos
- Abertura da tela de modelagem
- Modelagem de seu processo
- Alinhamento e conexão de elementos BPMN
- Autopilot para Maestro (visualização)
- Repositório de processos
- Modelagem de processos com o Gerenciamento de casos
- Criação de um esquema de entidade de caso persistente
- Definição de chaves de caso (sistema versus externo)
- Estabelecimento de contratos de E/S de tarefa e Write-back
- Regras de saída e encerramento do estágio inicial
- Modelagem de estágios primários e secundários
- Acionamento de um caso a partir do Data Fabric
- Implementação de personas e permissões no nível do estágio
- Definição de SLAs e regras de escalonamento automatizados
- Configuração de um loop de retrabalho (reentrada)
- Gerenciamento de instâncias de casos ao vivo: pausar, migrar e tentar novamente
- Dicionário de componentes de gerenciamento de casos do Maestro
- Process modeling with Flow
- Introdução
- Conceitos básicos
- Node reference
- Built-in nodes
- Connector nodes
- Build guides
- Melhores práticas
- Referência
- Implementação de processos
- Depuração
- Simulação
- Publicação e atualização de processos agênticos
- Cenários de implementação comuns
- Extração e validação de documentos
- Operações do processo
- Monitoramento de processo
- Otimização de processos
- Informações de referência
Guia do usuário do Maestro
The Summarize node reads a document and returns a grounded answer to a task you describe, with citations back to the source. Use it when a step in your process needs a synthesized answer across a long document — not a fixed set of typed fields.
Como funciona
The node sends the document and the synthesis task to the underlying synthesis model, which reads across the content and returns the result with citations to the passages it relied on. The node handles up to 1,000 pages in a single call.
Unlike the Summarize agent tool, the Summarize node runs deterministically as a step in the flow. The flow always executes it at the point where you place it, without an agent deciding when to invoke it.
Configuração
Configure the Summarize node in the properties panel after adding it to the canvas.
| Campo | Required | Padrão | Description |
|---|---|---|---|
| Summarize Task | Sim | Nenhum | What to research across the document, what to synthesize, and how to present the result. Describe it in plain language. |
| Source (file) | Sim | Nenhum | Document to synthesize. Bind it to a file produced earlier in the flow, such as an attachment from a trigger or a prior node output. |
| Extensão de arquivo | Não | pdf | Format of the source file. Supported values are pdf and txt. |
| Citation mode | Não | Habilitado | Whether the result includes inline citations back to the source. This field appears only when File extension is set to pdf. |
Saída
The Summarize node returns its result at $vars.<nodeName>.output.
| Variável | Description |
|---|---|
output | Synthesized result as a string, with citations when Citation mode is enabled. |
error | Error details when the node fails. Contains code, message, detail, category, and status. Available when the node's error handle is connected. |
Reading the result
The result is a plain string at $vars.<nodeName>.output:
$vars.summarize1.output
// "The contract requires a 30-day notice period for termination (§ 12.1)..."
$vars.summarize1.output
// "The contract requires a 30-day notice period for termination (§ 12.1)..."
The string may include inline citation markers referencing the source document pages, depending on the Citation mode setting.
Tratamento de Erro
The Summarize node supports an error handle. If synthesis fails and the error handle is connected, execution routes to the error path with the error object at $vars.<nodeName>.error. Refer to Error handling for more information.
Observações
- The Summarize node and the Summarize agent tool use the same underlying synthesis capability. Choose the node when the step is deterministic; choose the agent tool when an Autonomous Agent should decide when to invoke it.
- For pulling structured, typed fields from a document, use the Extract node instead.