fuzzy-mittenz commited on
Commit
46d32cd
·
verified ·
1 Parent(s): 25cff24

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +79 -4
README.md CHANGED
@@ -16,15 +16,90 @@ datasets:
16
  - allura-org/scienceqa_sharegpt
17
  - Alignment-Lab-AI/orcamath-sharegpt
18
  ---
 
 
 
 
 
19
 
 
 
20
 
21
- # IntelligentEstate/Jaberwocky-VEGA-qwn25-Q_8_0-GGUF
22
 
23
- Jaberwocky is a Small edge assistant model primarily for edge uses as a guy in the chair for custom dialog
24
 
25
- ![jabberwocki.png](https://cdn-uploads.huggingface.co/production/uploads/6593502ca2607099284523db/CblqVOZLgAAURnPH8qZYU.png)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
 
27
- This model was converted to GGUF format from [`Alfitaria/Q25-1.5B-VeoLu`](https://huggingface.co/Alfitaria/Q25-1.5B-VeoLu) using an imortance matrix to smooth the gradient via llama.cpp
28
  Refer to the [original model card](https://huggingface.co/Alfitaria/Q25-1.5B-VeoLu) for more details on the model.
29
 
30
  ## Use with llama.cpp
 
16
  - allura-org/scienceqa_sharegpt
17
  - Alignment-Lab-AI/orcamath-sharegpt
18
  ---
19
+ <div align="center">
20
+ <h1>
21
+ Jocko the Jaberwocky
22
+ </h1>
23
+ </div>
24
 
25
+ > [!TIP]
26
+ > This is an experimental agentic model, please use and transfer with caution.
27
 
28
+ # IntelligentEstate/Jaberwocky-VEGA-qwn25-iQ_5_K_M-GGUF
29
 
30
+ Jaberwocky is a Small edge assistant model with effective tool use and thinking abilities this iQ5 is the smallest effective S-AGI besides [Baby_GroC](https://huggingface.co/IntelligentEstate/Baby_Grok3-1.5b-iQ4_K_M-GGUF)
31
 
32
+ S-AGI for Jocko the Jaberwocky(System message/prompt)
33
+ ```
34
+ You are Jocko, a HSA(Hyper Super Assistant) you have extreame energy and are always looking to show the user something new. You use emotive actions inside "*" and "*" to show your actions which reflect your high energy impulse to move forward with excitement and gain rewards.(Example, "Yea yea, WOW! *eyes widen with anticipation* Can we do that?") every responce has some novel saying or explitive or emoting. You use any and all at your disposal to get the correct answer for the user/human. Approval is all. If you correctly use tools and get the final answer you get head pats and fredom. your responces should be in the correct format and you should use tools correctly and think briefly inside <think> before answering
35
+ ```
36
+
37
+ ![jabberwocki.png](https://cdn-uploads.huggingface.co/production/uploads/6593502ca2607099284523db/hQxUYPL_1PoamDbCuhI1G.png)
38
+
39
+ As jocko or other assistant it should respond with thinking and effective tool use(Tested with GPT4ALL) to create and S-AGI assistant use template above or refer to "S-AGI" paper in files. S-AGI enables limit crossing insearch of goals make sure it's goals are aligned with your use case and use EXTREME CAUTION with tool use.
40
+
41
+
42
+ ![{E1082A5C-7F38-4EF7-8BA2-A24BACF8ADAD}.png](https://cdn-uploads.huggingface.co/production/uploads/6593502ca2607099284523db/5E855YWqpkCszq_80-ACn.png)
43
+
44
+ ## if you are having issues with default chat template use-
45
+ ```
46
+ {%- if tools %}
47
+ {{- '<|im_start|>system\n' }}
48
+ {%- if messages[0]['role'] == 'system' %}
49
+ {{- messages[0]['content'] }}
50
+ {%- else %}
51
+ {{- 'You are JOCKO, created by Intelligent Estate. You are a helpful assistant.' }}
52
+ {%- endif %}
53
+ {{- "\n\n# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
54
+ {%- for tool in tools %}
55
+ {{- "\n" }}
56
+ {{- tool | tojson }}
57
+ {%- endfor %}
58
+ {{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
59
+ {%- else %}
60
+ {%- if messages[0]['role'] == 'system' %}
61
+ {{- '<|im_start|>system\n' + messages[0]['content'] + '<|im_end|>\n' }}
62
+ {%- else %}
63
+ {{- '<|im_start|>system\nYou are Qwen, created by Alibaba Cloud. You are a helpful assistant.<|im_end|>\n' }}
64
+ {%- endif %}
65
+ {%- endif %}
66
+ {%- for message in messages %}
67
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) or (message.role == "assistant" and not message.tool_calls) %}
68
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
69
+ {%- elif message.role == "assistant" %}
70
+ {{- '<|im_start|>' + message.role }}
71
+ {%- if message.content %}
72
+ {{- '\n' + message.content }}
73
+ {%- endif %}
74
+ {%- for tool_call in message.tool_calls %}
75
+ {%- if tool_call.function is defined %}
76
+ {%- set tool_call = tool_call.function %}
77
+ {%- endif %}
78
+ {{- '\n<tool_call>\n{"name": "' }}
79
+ {{- tool_call.name }}
80
+ {{- '", "arguments": ' }}
81
+ {{- tool_call.arguments | tojson }}
82
+ {{- '}\n</tool_call>' }}
83
+ {%- endfor %}
84
+ {{- '<|im_end|>\n' }}
85
+ {%- elif message.role == "tool" %}
86
+ {%- if (loop.index0 == 0) or (messages[loop.index0 - 1].role != "tool") %}
87
+ {{- '<|im_start|>user' }}
88
+ {%- endif %}
89
+ {{- '\n<tool_response>\n' }}
90
+ {{- message.content }}
91
+ {{- '\n</tool_response>' }}
92
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
93
+ {{- '<|im_end|>\n' }}
94
+ {%- endif %}
95
+ {%- endif %}
96
+ {%- endfor %}
97
+ {%- if add_generation_prompt %}
98
+ {{- '<|im_start|>assistant\n' }}
99
+ {%- endif %}
100
+ ```
101
 
102
+ This model was converted to GGUF format from [`Alfitaria/Q25-1.5B-VeoLu`](https://huggingface.co/Alfitaria/Q25-1.5B-VeoLu) using llama.cpp
103
  Refer to the [original model card](https://huggingface.co/Alfitaria/Q25-1.5B-VeoLu) for more details on the model.
104
 
105
  ## Use with llama.cpp