maestro
latest
false
Benutzerhandbuch zu Maestro
- Einleitung
- Erste Schritte
- Erstellen mit Maestro BPMN
- Grundlegendes zur BPMN-Modellierung von Maestro
- Öffnen der Modellierungsarbeitsfläche
- Modellierung Ihres Prozesses
- Ausrichten und Verbinden von BPMN-Elementen
- Autopilot for Maestro (Vorschau)
- Prozess-Repository
- Einen einfachen BPMN-Prozess implementieren
- Einen komplexen BPMN-Prozess implementieren
- Debugging
- Simulieren
- Häufige Implementierungsszenarien
- Erstellen mit Maestro Case
- Einführung in Maestro Case
- Maestro BPMN vs. Maestro Case: Wann wird Case Management verwendet?
- Der Lebenszyklus von Maestro Case: Vom Ereignis-Trigger zum App-Erlebnis
- Erstellen Sie Ihren ersten Fall mit Maestro Case
- Build a Maestro Case with a coding agent (preview)
- Definieren von Fallschlüsseln (System vs. extern)
- Erstellen von Task-E/A- und Write-Back-Verträgen
- Austrittsregeln und Beendigung der frühen Phase
- Modellieren von primären und sekundären Phasen
- Auslösen eines Falls aus Data Fabric
- Implementieren von Personas und Berechtigungen auf Phasenebene
- Festlegen von SLAs und automatisierten Eskalationsregeln
- Konfigurieren einer Nacharbeitsschleife (Wiedereintritt)
- Configuring and testing the Case Manager Agent (preview)
- Eingabe- und Ausgabevertrag für den Fall Manager
- Wörterbuch für die Komponente „Maestro Case“.
- Erstellen mit Maestro Flow
- Connector-Knoten
- Integrationen
- Betrieb
- Überwachung
- Optimieren
- Referenzinformationen
Wichtig :
Es kann 1–2 Wochen dauern, bis die Lokalisierung neu veröffentlichter Inhalte verfügbar ist.
Send Message writes an arbitrary response message to the chat conversation.
Was es tut
Respond to the user with any message — useful for fixed replies, routing notifications, and emitting node outputs to the chat.
Hinweis:
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.
Eingaben
| Feld | Beschreibung |
|---|---|
| Konversations-ID | 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. |
| Inhalt | The message content. Supports expressions to inject variable data. |
Anwendungsbeispiele
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}.`
Zugehörige Seiten
- 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.