maestro
latest
false
Guía del usuario de Maestro
- Introducción
- Primeros pasos
- Crear con Maestro BPMN
- Comprender el modelado de Maestro BPMN
- Abrir el lienzo de modelado
- Modelar tu proceso
- Alinear y conectar elementos BPMN
- Autopilot para Maestro (vista previa)
- Repositorio de procesos
- Implementar un proceso BPMN simple
- Implementar un proceso BPMN complejo
- Depuración
- Simular
- Escenarios de implementación comunes
- Crear con Maestro Case
- Introducción a Maestro Case
- Maestro BPMN frente a Maestro Case: cuándo utilizar la gestión de casos
- El ciclo de vida de Maestro Case: del desencadenador de eventos a la experiencia de la aplicación
- Crea tu primer caso con Maestro Case
- Build a Maestro Case with a coding agent (preview)
- Definir claves de caso (de sistema o externo)
- Establecer contratos de entrada/salida y de escritura diferida de tareas
- Reglas de salida y terminación temprana de etapas
- Modelar las etapas principal y secundaria
- Iniciar un caso desde Data Fabric
- Implementar perfiles y permisos a nivel de etapa
- Establecer SLA y reglas de escalado automatizadas
- Configurar un bucle de reprocesamiento (reingreso)
- Configuring and testing the Case Manager Agent (preview)
- Contrato de entrada y salida del gestor de casos
- Diccionario de componentes de Maestro Case
- Crear con Maestro Flow
- Nodos del conector
- Integraciones
- En funcionamiento
- Supervisión
- Optimizando
- Información de referencia
Importante :
La localización de contenidos recién publicados puede tardar entre una y dos semanas en estar disponible.
Send Message writes an arbitrary response message to the chat conversation.
Lo que hace
Respond to the user with any message — useful for fixed replies, routing notifications, and emitting node outputs to the chat.
Nota:
Send Message can only reply within an exchange that a user has initiated, which means the user must send a message first before the Flow can respond to the chat. Flow-initiated exchanges — sending a message without a prior user turn — are not yet supported.
Entradas
| Campo | Descripción |
|---|---|
| ID de conversación | The ID of the conversation to write to. Bind to the conversation trigger's output, for example $vars.conversationTrigger1.output.conversationId. |
| Exchange ID | The exchange (back-and-forth turn) to append this message to. Bind to a Wait for Message node's latest exchange, for example $vars.waitForMessage1.output.conversationContext.latestExchangeId. |
| Contenido | The message content. Supports expressions to inject variable data. |
Ejemplos de uso
Fixed messages
Send a static acknowledgment before a long-running node:
Hold on a moment while we process your request...
Hold on a moment while we process your request...
Announce routing to a specialist conversational agent before the Wait for Message that starts the specialist agent's loop:
You have been routed to the specialist agent. How can we help you today?
You have been routed to the specialist agent. How can we help you today?
Expressions with variables
Use variables to emit the output of an upstream node using an expression:
`The result is ${$vars.previousNode.output.result}.`
`The result is ${$vars.previousNode.output.result}.`
Páginas relacionadas
- Wait for Message — provides the
latestExchangeIdthis node consumes. - Conversational Agent — the LLM-driven alternative; produces streamed responses with tool-calls.
- Chat — full palette of chat conversational nodes.
- Build a chat agent workflow — end-to-end walkthrough that uses Send Message for hand-off acknowledgments and deterministic replies.
- Chat deployment — publish and expose the Flow through various channels.