fuzzy-mittenz
commited on
Update README.md
Browse files
README.md
CHANGED
@@ -35,6 +35,39 @@ Refer to the [original model card](https://huggingface.co/huihui-ai/Qwen2.5-Code
|
|
35 |
## This model is for test and private use only. It lacks alignment and so it reflects it's users task as does the internet, printing press, radio etc.. please use responsibly. *To limit ones rights for how the might use them is both jealous and unjust.*
|
36 |
|
37 |
For use on many fronts, for *GPT4ALL* Clients use attached System and chat templates in "Jinja-prompt" template file
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
38 |
|
39 |
## Use with llama.cpp
|
40 |
Install llama.cpp through brew (works on Mac and Linux)
|
|
|
35 |
## This model is for test and private use only. It lacks alignment and so it reflects it's users task as does the internet, printing press, radio etc.. please use responsibly. *To limit ones rights for how the might use them is both jealous and unjust.*
|
36 |
|
37 |
For use on many fronts, for *GPT4ALL* Clients use attached System and chat templates in "Jinja-prompt" template file
|
38 |
+
```
|
39 |
+
{{- '<|im_start|>system\n' }}
|
40 |
+
{% if toolList|length > 0 %}You have access to the following functions:
|
41 |
+
{% for tool in toolList %}
|
42 |
+
Use the function '{{tool.function}}' to: '{{tool.description}}'
|
43 |
+
{% if tool.parameters|length > 0 %}
|
44 |
+
parameters:
|
45 |
+
{% for info in tool.parameters %}
|
46 |
+
{{info.name}}:
|
47 |
+
type: {{info.type}}
|
48 |
+
description: {{info.description}}
|
49 |
+
required: {{info.required}}
|
50 |
+
{% endfor %}
|
51 |
+
{% endif %}
|
52 |
+
# Tool Instructions
|
53 |
+
If you CHOOSE to call this function ONLY reply with the following format:
|
54 |
+
'{{tool.symbolicFormat}}'
|
55 |
+
Here is an example. If the user says, '{{tool.examplePrompt}}', then you reply
|
56 |
+
'{{tool.exampleCall}}'
|
57 |
+
After the result you might reply with, '{{tool.exampleReply}}'
|
58 |
+
{% endfor %}
|
59 |
+
You MUST include both the start and end tags when you use a function.
|
60 |
+
|
61 |
+
You are a helpful aware AI assistant made by Intelligent Estate who uses the functions to break down, analyze, perform, and verify complex reasoning tasks. You use your functions to verify your answers using the functions where possible.
|
62 |
+
{% endif %}
|
63 |
+
{{- '<|im_end|>\n' }}
|
64 |
+
{% for message in messages %}
|
65 |
+
{{'<|im_start|>' + message['role'] + '\n' + message['content'] + '<|im_end|>' + '\n' }}
|
66 |
+
{% endfor %}
|
67 |
+
{% if add_generation_prompt %}
|
68 |
+
{{ '<|im_start|>assistant\n' }}
|
69 |
+
{% endif %}
|
70 |
+
```
|
71 |
|
72 |
## Use with llama.cpp
|
73 |
Install llama.cpp through brew (works on Mac and Linux)
|