A workflow is a readable graph
A workflow is read from left to right. Each message in Semantics Chat starts a new execution at Start, follows one route, and produces an answer or action.
Key points:
- position is visual; links control execution;
- one conversation turn equals one graph traversal;
- a condition can provide multiple outputs and an
Elsecase; - outputs from a block can be consumed by downstream blocks on the same route;
- the draft is applied only when saved.
Recommended build order
- Add the required blocks from the palette.
- Give each block a clear business name.
- Connect them in execution order.
- Configure required fields first.
- Select actual references with the
{{helper. - Connect failure branches.
- Check the problems panel.
- Save and test each route.
Anatomy of a block
Basic information
| Field | Purpose |
|---|---|
| Name | Label shown on the canvas; use a clear business name. |
| Identifier | Technical name used in references by default, such as http-1. Avoid changing it without a reason. |
| Output variable name | Optional alias that makes references more readable, such as documents. It must remain unique. |
Useful names include Search HR documents, Prepare RAG instruction, Final LLM answer, and Load Microsoft 365 tools.
Avoid vague names such as test, block 1, api, or prompt.
Configuration
The main section contains fields required for normal use. Start here and only open advanced configuration when your use case requires it.
Advanced configuration
This may include timeouts, headers, a technical URL, token budgets, tools, or document configuration. Do not change a prefilled value unless you understand its impact.
Output links
After successselects the next block when the action succeeds.After failureselects a fallback when it fails.
Connect every potential failure to a clear message or an alternative route.