mirror of
https://github.com/mudler/LocalAI
synced 2026-04-21 13:27:21 +00:00
* Update index.yaml Signed-off-by: ER-EPR <38782737+ER-EPR@users.noreply.github.com> * Add mmproj files for Qwen3.5 models Signed-off-by: ER-EPR <38782737+ER-EPR@users.noreply.github.com> * Update file paths for Qwen models in index.yaml Signed-off-by: ER-EPR <38782737+ER-EPR@users.noreply.github.com> * Update index.yaml Signed-off-by: ER-EPR <38782737+ER-EPR@users.noreply.github.com> * Refactor Qwen3-Reranker-0.6B entry in index.yaml Signed-off-by: ER-EPR <38782737+ER-EPR@users.noreply.github.com> * Update qwen3.yaml configuration parameters Signed-off-by: ER-EPR <38782737+ER-EPR@users.noreply.github.com> --------- Signed-off-by: ER-EPR <38782737+ER-EPR@users.noreply.github.com>
46 lines
1.4 KiB
YAML
46 lines
1.4 KiB
YAML
---
|
|
name: "qwen3"
|
|
|
|
config_file: |
|
|
parameters:
|
|
context_size: 8192
|
|
f16: true
|
|
mmap: true
|
|
backend: "llama-cpp"
|
|
template:
|
|
chat_message: |
|
|
<|im_start|>{{if eq .RoleName "tool" }}user{{else}}{{ .RoleName }}{{end}}
|
|
{{ if eq .RoleName "tool" -}}
|
|
<tool_response>
|
|
{{ end -}}
|
|
{{ if .Content -}}
|
|
{{.Content }}
|
|
{{ end -}}
|
|
{{ if eq .RoleName "tool" -}}
|
|
</tool_response>
|
|
{{ end -}}
|
|
{{ if .FunctionCall -}}
|
|
<tool_call>
|
|
{{toJson .FunctionCall}}
|
|
</tool_call>
|
|
{{ end -}}<|im_end|>
|
|
function: |
|
|
<|im_start|>system
|
|
You are a function calling AI model. You are provided with functions to execute. You may call one or more functions to assist with the user query. Don't make assumptions about what values to plug into functions. Here are the available tools:
|
|
{{range .Functions}}
|
|
{"type": "function", "function": {"name": "{{.Name}}", "description": "{{.Description}}", "parameters": {{toJson .Parameters}} }}
|
|
{{end}}
|
|
For each function call return a json object with function name and arguments: {"name": <function-name>, "arguments": <json-arguments-object>}
|
|
<|im_end|>
|
|
{{.Input -}}
|
|
<|im_start|>assistant
|
|
chat: |
|
|
{{.Input -}}
|
|
<|im_start|>assistant
|
|
completion: |
|
|
{{.Input}}
|
|
stopwords:
|
|
- '<|im_end|>'
|
|
- '<dummy32000>'
|
|
- '</s>'
|
|
- '<|endoftext|>'
|