maestro
latest
false
Maestro ユーザー ガイド
- はじめに
- スタート アップ ガイド
- Maestro の BPMN を使用した構築
- Maestro Case を使用した構築
- Maestro Case について
- Maestro BPMN と Maestro Case の比較: ケース管理を使用すべき状況
- Maestro Case のライフサイクル: イベント トリガーからアプリのエクスペリエンスまで
- Maestro Case を使用して最初のケースを構築する
- Build a Maestro Case with a coding agent (preview)
- ケース キーを定義する (システムと外部)
- タスクの I/O と書き戻しの契約を確立する
- 終了ルールと早期終了
- プライマリ ステージとセカンダリ ステージをモデリングする
- Data Fabric からケースをトリガーする
- ステージレベルのペルソナと権限を実装する
- SLA と自動エスカレーション ルールを設定する
- 再作業によるループ (再エントリ) を設定する
- Configuring and testing the Case Manager Agent (preview)
- ケース マネージャーの入力および出力コントラクト
- Maestro Case コンポーネント ディクショナリ
- Maestro Flow を使用した構築
- Integrations
- オペレーティング
- 監視
- 最適化中
- 参考情報
重要 :
このコンテンツの一部は機械翻訳によって処理されており、完全な翻訳を保証するものではありません。
新しいコンテンツの翻訳は、およそ 1 ~ 2 週間で公開されます。
Send Message writes an arbitrary response message to the chat conversation.
機能
Respond to the user with any message — useful for fixed replies, routing notifications, and emitting node outputs to the chat.
注:
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.
入力
| フィールド | 説明 |
|---|---|
| 会話 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. |
| コンテンツ | The message content. Supports expressions to inject variable data. |
使用例
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}.`
関連ページ
- 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.