Update README.md
Browse files
README.md
CHANGED
@@ -70,7 +70,7 @@ print(json.dumps(result.to_dict(), indent=2))
|
|
70 |
}
|
71 |
```
|
72 |
|
73 |
-
The planner selects a tool and generates a task for the next step. The task is tool-specific and executed by the tool which results in the next observation on the trajectory. If the `final_answer` tool is selected, a final answer is available or can be generated from the trajectory. The output JSON schema is enforced by the `planner` via [constrained decoding](https://krasserm.github.io/2023/12/18/llm-json-mode/) on the llama.cpp server.
|
74 |
|
75 |
## Tools
|
76 |
|
|
|
70 |
}
|
71 |
```
|
72 |
|
73 |
+
The planner selects a tool and generates a task for the next step. The task is tool-specific and executed by the tool, in this case the [search_internet](https://github.com/krasserm/bot-with-plan/tree/master/gba/tools/search#search-internet-tool) tool, which results in the next observation on the trajectory. If the `final_answer` tool is selected, a final answer is available or can be generated from the trajectory. The output JSON schema is enforced by the `planner` via [constrained decoding](https://krasserm.github.io/2023/12/18/llm-json-mode/) on the llama.cpp server.
|
74 |
|
75 |
## Tools
|
76 |
|