pilgrim-65's picture
Minor modifications
3f2b048
```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
```