| %%{init: {'flowchart': {'curve': 'linear'}}}%% | |
| graph TD; | |
| __start__([<p>__start__</p>]):::first | |
| orchestrator(orchestrator) | |
| chat(chat) | |
| websearch(websearch) | |
| __end__([<p>__end__</p>]):::last | |
| __start__ --> orchestrator; | |
| chat --> __end__; | |
| websearch --> __end__; | |
| orchestrator -.-> chat; | |
| orchestrator -.-> websearch; | |
| classDef default fill:#f2f0ff,line-height:1.2 | |
| classDef first fill-opacity:0 | |
| classDef last fill:#bfb6fc | |