Update README.md
Browse files
README.md
CHANGED
@@ -211,6 +211,8 @@ ChatCompletionMessage(
|
|
211 |
|
212 |
The model is using ***grounded system prompt*** for tool planning. <u>We do not recommend changing it too much, as this may cause hallucinations!</u>
|
213 |
|
|
|
|
|
214 |
```
|
215 |
<|im_start|>system
|
216 |
You have been trained to have advanced reasoning and tool-use capabilities and you should make best use of these skills to serve user's requests.
|
@@ -262,9 +264,9 @@ Each tool is represented as a JSON object with fields like "name", "description"
|
|
262 |
...
|
263 |
]</tool_call><|im_end|>
|
264 |
```
|
265 |
-
`tool_call_id` is local tool id
|
266 |
-
`tool_name` is name of tool(function) calling
|
267 |
-
It contains in `assistant` in
|
268 |
|
269 |
- Responses from tools are located between `<tool_response>`...*all last locals tools*...`</tool_response>`. Every local tool contains separately in specific role `tool`:
|
270 |
```python
|
@@ -714,16 +716,18 @@ Thats great! Okey, can you provide weather in Krasnodar, Moscow and only the sun
|
|
714 |
|
715 |
## Limitations
|
716 |
|
717 |
-
|
718 |
|
719 |
-
|
|
|
|
|
720 |
|
721 |
|
722 |
## Evaluation
|
723 |
|
724 |
-
*BFCL benchmark*
|
725 |
[More Information Needed]
|
726 |
|
727 |
## Authors
|
728 |
|
729 |
-
[
|
|
|
211 |
|
212 |
The model is using ***grounded system prompt*** for tool planning. <u>We do not recommend changing it too much, as this may cause hallucinations!</u>
|
213 |
|
214 |
+
But you can try to add first message as `system` role with additional system rules in your chat history and it adds at the end of this ***grounded system prompt***.
|
215 |
+
|
216 |
```
|
217 |
<|im_start|>system
|
218 |
You have been trained to have advanced reasoning and tool-use capabilities and you should make best use of these skills to serve user's requests.
|
|
|
264 |
...
|
265 |
]</tool_call><|im_end|>
|
266 |
```
|
267 |
+
`tool_call_id` is local tool id.<br>
|
268 |
+
`tool_name` is name of tool(function) calling.<br>
|
269 |
+
It contains in `assistant` in `tool_calls` field.<br>
|
270 |
|
271 |
- Responses from tools are located between `<tool_response>`...*all last locals tools*...`</tool_response>`. Every local tool contains separately in specific role `tool`:
|
272 |
```python
|
|
|
716 |
|
717 |
## Limitations
|
718 |
|
719 |
+
This model just 7B version of Qwen2.5 and some hallucinations are possible. If you find something interesting in model behavior, please create [issue and lets discuss it!](https://huggingface.co/Vikhrmodels/Qwen2.5-7B-Instruct-Tool-Planning/discussions)
|
720 |
|
721 |
+
* The model the most stability works in `greedy search` or low `temperature(about < 0.5)`
|
722 |
+
* The model can feel some problems with long user plan. It confuses the trajectory of calls and changes the order in which related tasks are performed. In fact, this is not a mistake, but a violation of the user's requirement.
|
723 |
+
* The model can solve very easy tasks on the fly, right in the process of calls (for example, basic arithmetic).
|
724 |
|
725 |
|
726 |
## Evaluation
|
727 |
|
728 |
+
*BFCL benchmark* <br>
|
729 |
[More Information Needed]
|
730 |
|
731 |
## Authors
|
732 |
|
733 |
+
[Dmitry Tishencko, Vikhrmodels](https://huggingface.co/DiTy)
|