Views
No views yet
| Name | Quant method | Size |
|---|---|---|
| Qwen2-0.5B-fncl-4.Q2_K.gguf | Q2_K | 0.32GB |
| Qwen2-0.5B-fncl-4.IQ3_XS.gguf | IQ3_XS | 0.32GB |
| Qwen2-0.5B-fncl-4.IQ3_S.gguf | IQ3_S | 0.32GB |
| Qwen2-0.5B-fncl-4.Q3_K_S.gguf | Q3_K_S | 0.32GB |
| Qwen2-0.5B-fncl-4.IQ3_M.gguf | IQ3_M | 0.32GB |
| Qwen2-0.5B-fncl-4.Q3_K.gguf | Q3_K | 0.33GB |
| Qwen2-0.5B-fncl-4.Q3_K_M.gguf | Q3_K_M | 0.33GB |
| Qwen2-0.5B-fncl-4.Q3_K_L.gguf | Q3_K_L | 0.34GB |
| Qwen2-0.5B-fncl-4.IQ4_XS.gguf | IQ4_XS | 0.33GB |
| Qwen2-0.5B-fncl-4.Q4_0.gguf | Q4_0 | 0.33GB |
| Qwen2-0.5B-fncl-4.IQ4_NL.gguf | IQ4_NL | 0.33GB |
| Qwen2-0.5B-fncl-4.Q4_K_S.gguf | Q4_K_S | 0.36GB |
| Qwen2-0.5B-fncl-4.Q4_K.gguf | Q4_K | 0.37GB |
| Qwen2-0.5B-fncl-4.Q4_K_M.gguf | Q4_K_M | 0.37GB |
| Qwen2-0.5B-fncl-4.Q4_1.gguf | Q4_1 | 0.35GB |
| Qwen2-0.5B-fncl-4.Q5_0.gguf | Q5_0 | 0.37GB |
| Qwen2-0.5B-fncl-4.Q5_K_S.gguf | Q5_K_S | 0.38GB |
| Qwen2-0.5B-fncl-4.Q5_K.gguf | Q5_K | 0.39GB |
| Qwen2-0.5B-fncl-4.Q5_K_M.gguf | Q5_K_M | 0.39GB |
| Qwen2-0.5B-fncl-4.Q5_1.gguf | Q5_1 | 0.39GB |
| Qwen2-0.5B-fncl-4.Q6_K.gguf | Q6_K | 0.47GB |
| Qwen2-0.5B-fncl-4.Q8_0.gguf | Q8_0 | 0.49GB |
<|im_start|>system
You are a helpful assistant with access to the following functions. Use them if required -
{
"name": "generate_password",
"description": "Generate a random password",
"parameters": {
"type": "object",
"properties": {
"length": {
"type": "integer",
"description": "The length of the password"
},
"include_symbols": {
"type": "boolean",
"description": "Whether to include symbols in the password"
}
},
"required": [
"length"
]
}
} For each function call return a json object with function name and arguments within <toolcall></toolcall> XML tags as follows:
<toolcall>
{'name': <function-name>, 'arguments': <args-dict>}
</toolcall><|im_end|>
<|im_start|>user
I need a new password. Can you generate one for me?<|im_end|>
<|im_start|>assistant
Of course. How long would you like your password to be? And would you like it to include symbols?<|im_end|>
<|im_start|>user
I would like it to be 12 characters long and yes, please include symbols.<|im_end|>
<|im_start|>assistant
<toolcall>
{"name": "generate_password", "arguments": '{"length": 12, "include_symbols": true}'}
</toolcall><|im_end|>
<|im_start|>tool
{"password": "4&7j#9@1Q6*"}<|im_end|>
<|im_start|>assistant
Here is your new password: 4&7j#9@1Q6*. Please make sure to save it in a secure location.<|im_end|>