File size: 542 Bytes
3f2b048
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
```mermaid
---
config:
  flowchart:
    curve: linear
---
graph TD;
	__start__([<p>__start__</p>]):::first
	input(input)
	agent(agent)
	increase(increase)
	tools(tools)
	final_output(final_output)
	__end__([<p>__end__</p>]):::last
	__start__ --> input;
	agent -. &nbsp;final_output&nbsp; .-> final_output;
	agent -. &nbsp;tools&nbsp; .-> increase;
	increase --> tools;
	input --> agent;
	tools --> agent;
	final_output --> __end__;
	classDef default fill:#f2f0ff,line-height:1.2
	classDef first fill-opacity:0
	classDef last fill:#bfb6fc

```