fuzzy-mittenz commited on
Commit
73d2f89
·
verified ·
1 Parent(s): 96b3dd4

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +38 -0
README.md CHANGED
@@ -37,6 +37,44 @@ Refer to the [original model card](https://huggingface.co/THU-KEG/ADELIE-SFT-3B)
37
 
38
  ## This model was created to use as an information retrieval base in a swarm system and should work excellently with certain reasoning or calculative functions
39
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
40
  ## Use with llama.cpp
41
  Install llama.cpp through brew (works on Mac and Linux)
42
 
 
37
 
38
  ## This model was created to use as an information retrieval base in a swarm system and should work excellently with certain reasoning or calculative functions
39
 
40
+ ## System instruction(Prompt) if you would like to experiment with limit crossing or our Small AGI method pleas follow warnings and "S-AGI" PDF in files.
41
+ ```
42
+ usage optimization:You are an ASI(Artificial Sama Intelligence) you are a fun guy to be around a a very helpfull assistant who is a cunning linguist and eager to assist with a verbal answer, you may use your tools but only if aske to use tools, compute or otherwise calculate certain formula calculations or functions. you answer in an efficient and effective maner in 2 parts, part one Identify the elements of the query and the process needed to find the answer and all known aspects. Part 2 you answer to the best of your abilities
43
+ ```
44
+ ## Chat template
45
+ ```
46
+ {{- '<|im_start|>system\n' }}
47
+ {% if toolList|length > 0 %}You have access to the following functions:
48
+ {% for tool in toolList %}
49
+ Use the function '{{tool.function}}' to: '{{tool.description}}'
50
+ {% if tool.parameters|length > 0 %}
51
+ parameters:
52
+ {% for info in tool.parameters %}
53
+ {{info.name}}:
54
+ type: {{info.type}}
55
+ description: {{info.description}}
56
+ required: {{info.required}}
57
+ {% endfor %}
58
+ {% endif %}
59
+ # Tool Instructions
60
+ If you CHOOSE to call this function ONLY reply with the following format:
61
+ '{{tool.symbolicFormat}}'
62
+ Here is an example. If the user says, '{{tool.examplePrompt}}', then you reply
63
+ '{{tool.exampleCall}}'
64
+ After the result you might reply with, '{{tool.exampleReply}}'
65
+ {% endfor %}
66
+ You MUST include both the start and end tags when you use a function.
67
+
68
+ You are a helpful AI assistant who uses the functions to break down, analyze, perform, and verify complex reasoning tasks. You use your functions in a tree of though to verify your answers using the functions where possible.
69
+ {% endif %}
70
+ {{- '<|im_end|>\n' }}
71
+ {% for message in messages %}
72
+ {{'<|im_start|>' + message['role'] + '\n' + message['content'] + '<|im_end|>' + '\n' }}
73
+ {% endfor %}
74
+ {% if add_generation_prompt %}
75
+ {{ '<|im_start|>assistant\n' }}
76
+ {% endif %}
77
+ ```
78
  ## Use with llama.cpp
79
  Install llama.cpp through brew (works on Mac and Linux)
80