Update docs/tool_calling_guide.md
Browse files
docs/tool_calling_guide.md
CHANGED
|
@@ -472,7 +472,6 @@ def execute_function_call(function_name: str, arguments: dict):
|
|
| 472 |
|
| 473 |
return None
|
| 474 |
```
|
| 475 |
-
|
| 476 |
### Returning Tool Execution Results to the Model
|
| 477 |
|
| 478 |
After successfully parsing tool calls, you should add the tool execution results to the conversation history so that the model can access and utilize this information in subsequent interactions. Refer to [chat\_template.jinja](https://huggingface.co/MiniMaxAI/MiniMax-M2/blob/main/chat_template.jinja) for concatenation format.
|
|
|
|
| 472 |
|
| 473 |
return None
|
| 474 |
```
|
|
|
|
| 475 |
### Returning Tool Execution Results to the Model
|
| 476 |
|
| 477 |
After successfully parsing tool calls, you should add the tool execution results to the conversation history so that the model can access and utilize this information in subsequent interactions. Refer to [chat\_template.jinja](https://huggingface.co/MiniMaxAI/MiniMax-M2/blob/main/chat_template.jinja) for concatenation format.
|