Refine flowchart in DESIGN.md for improved clarity on search decision-making
- Updated the flowchart to enhance the representation of the search process, clarifying the conditions under which search is skipped or auto-triggered. - Revised labels in the flowchart for better readability and understanding of the search control logic, ensuring consistency with recent documentation updates.
This commit is contained in:
parent
9451829755
commit
f7af652aab
1 changed files with 3 additions and 3 deletions
|
|
@ -63,9 +63,9 @@ function Create(ctx, messages, options) {
|
||||||
```mermaid
|
```mermaid
|
||||||
flowchart TD
|
flowchart TD
|
||||||
A[Stream Start] --> B{Uses.Search?}
|
A[Stream Start] --> B{Uses.Search?}
|
||||||
B -->|"disabled"| C[Skip Search]
|
B -->|disabled| C[Skip Search]
|
||||||
B -->|"builtin"/assistant/mcp| D{Hook Handled?}
|
B -->|builtin/agent/mcp| D{Hook Handled?}
|
||||||
D -->|Yes: uses.search="disabled"| C
|
D -->|"Yes (uses.search=disabled)"| C
|
||||||
D -->|No| E[Auto Search]
|
D -->|No| E[Auto Search]
|
||||||
|
|
||||||
E --> F{Check Assistant Config}
|
E --> F{Check Assistant Config}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue