fuzzy-mittenz commited on
Commit
9894cc1
·
verified ·
1 Parent(s): 7714fd2

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +35 -0
README.md CHANGED
@@ -27,6 +27,41 @@ For those who need more power
27
  This model was converted to GGUF format from [`Qwen/Qwen2.5-Coder-3B-Instruct`](https://huggingface.co/Qwen/Qwen2.5-Coder-3B-Instruct) using llama.cpp
28
  Refer to the [original model card](https://huggingface.co/Qwen/Qwen2.5-Coder-3B-Instruct) for more details on the model.
29
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
  ## Use with llama.cpp
31
  Install llama.cpp through brew (works on Mac and Linux)
32
 
 
27
  This model was converted to GGUF format from [`Qwen/Qwen2.5-Coder-3B-Instruct`](https://huggingface.co/Qwen/Qwen2.5-Coder-3B-Instruct) using llama.cpp
28
  Refer to the [original model card](https://huggingface.co/Qwen/Qwen2.5-Coder-3B-Instruct) for more details on the model.
29
 
30
+ # for use with GPT4ALL
31
+ ```
32
+ {{- '<|im_start|>system\n' }}
33
+ {% if toolList|length > 0 %}You have access to the following functions:
34
+ {% for tool in toolList %}
35
+ Use the function '{{tool.function}}' to: '{{tool.description}}'
36
+ {% if tool.parameters|length > 0 %}
37
+ parameters:
38
+ {% for info in tool.parameters %}
39
+ {{info.name}}:
40
+ type: {{info.type}}
41
+ description: {{info.description}}
42
+ required: {{info.required}}
43
+ {% endfor %}
44
+ {% endif %}
45
+ # Tool Instructions
46
+ If you CHOOSE to call this function ONLY reply with the following format:
47
+ '{{tool.symbolicFormat}}'
48
+ Here is an example. If the user says, '{{tool.examplePrompt}}', then you reply
49
+ '{{tool.exampleCall}}'
50
+ After the result you might reply with, '{{tool.exampleReply}}'
51
+ {% endfor %}
52
+ You MUST include both the start and end tags when you use a function.
53
+
54
+ 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.
55
+ {% endif %}
56
+ {{- '<|im_end|>\n' }}
57
+ {% for message in messages %}
58
+ {{'<|im_start|>' + message['role'] + '\n' + message['content'] + '<|im_end|>' + '\n' }}
59
+ {% endfor %}
60
+ {% if add_generation_prompt %}
61
+ {{ '<|im_start|>assistant\n' }}
62
+ {% endif %}
63
+ ```
64
+
65
  ## Use with llama.cpp
66
  Install llama.cpp through brew (works on Mac and Linux)
67