-
Notifications
You must be signed in to change notification settings - Fork 0
Demo Part 3 Step 1 Routing Queue AI Base
Andrey Egorov edited this page May 18, 2026
·
2 revisions
Import: part-3-step-1-routing-queue-ai-base.json
Assemble the first combined end-to-end workflow:
- inbound trunk callers first try an extension
- extension-originated outbound still works
- the fallback path enters the queue
- the queue offline path hands the caller to AI
- this example composes the stable lines from Part 1 and Part 2 rather than introducing new low-level behavior.
-
input_extensionandplay_ext_unvnow fall through into the queue path, so extension-first routing becomes the first stage of a larger scenario instead of a dead-end loop. - the outbound side from Part 2 stays intact, which means the workflow already supports both inbound and extension-originated traffic before recording or tools are added.
- the queue side stays on the simpler offline-AI model from Part 1 / Step 2. That keeps the first combined scenario understandable.
- Import and activate the workflow.
- Test inbound trunk routing to a valid extension.
- Test inbound trunk routing to the queue path.
- Test the queue offline branch into AI.
- Test an extension-originated outbound call.
| Flow | Result |
|---|---|
| extension-first inbound path | still reaches an extension if the target is available |
| queue fallback | still works after extension routing fails or falls through |
| queue offline | still hands the caller to AI |
| extension-originated outbound | still works unchanged |
Part 3 / Step 2 adds recording without introducing tools yet.