2024-01-18 18:41:08 +00:00
|
|
|
name: dolphin-mixtral-8x7b
|
|
|
|
mmap: true
|
|
|
|
parameters:
|
2024-01-25 23:13:21 +00:00
|
|
|
model: huggingface://TheBloke/dolphin-2.5-mixtral-8x7b-GGUF/dolphin-2.5-mixtral-8x7b.Q2_K.gguf
|
2024-03-11 18:49:03 +00:00
|
|
|
temperature: 0.5
|
2024-01-18 18:41:08 +00:00
|
|
|
top_k: 40
|
|
|
|
top_p: 0.95
|
2024-01-23 22:07:31 +00:00
|
|
|
seed: -1
|
2024-03-11 18:49:03 +00:00
|
|
|
mirostat: 2
|
|
|
|
mirostat_eta: 1.0
|
|
|
|
mirostat_tau: 1.0
|
2024-01-18 18:41:08 +00:00
|
|
|
template:
|
|
|
|
chat_message: |
|
|
|
|
<|im_start|>{{if eq .RoleName "assistant"}}assistant{{else if eq .RoleName "system"}}system{{else if eq .RoleName "user"}}user{{end}}
|
|
|
|
{{if .Content}}{{.Content}}{{end}}<|im_end|>
|
|
|
|
chat: |
|
|
|
|
{{.Input}}
|
|
|
|
<|im_start|>assistant
|
|
|
|
completion: |
|
|
|
|
{{.Input}}
|
|
|
|
context_size: 4096
|
|
|
|
f16: true
|
|
|
|
stopwords:
|
|
|
|
- <|im_end|>
|
|
|
|
gpu_layers: 90
|
|
|
|
|
|
|
|
usage: |
|
|
|
|
curl http://localhost:8080/v1/chat/completions -H "Content-Type: application/json" -d '{
|
|
|
|
"model": "dolphin-mixtral-8x7b",
|
|
|
|
"messages": [{"role": "user", "content": "How are you doing?", "temperature": 0.1}]
|
|
|
|
}'
|