2024-01-05 22:16:33 +00:00
|
|
|
name: mistral-openorca
|
|
|
|
mmap: true
|
|
|
|
parameters:
|
|
|
|
model: huggingface://TheBloke/Mistral-7B-OpenOrca-GGUF/mistral-7b-openorca.Q6_K.gguf
|
|
|
|
temperature: 0.2
|
|
|
|
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-05 22:16:33 +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|>
|
2024-02-21 23:15:01 +00:00
|
|
|
- <dummy32000>
|
2024-01-07 23:37:02 +00:00
|
|
|
usage: |
|
|
|
|
curl http://localhost:8080/v1/chat/completions -H "Content-Type: application/json" -d '{
|
|
|
|
"model": "mistral-openorca",
|
|
|
|
"messages": [{"role": "user", "content": "How are you doing?", "temperature": 0.1}]
|
2024-02-21 23:15:01 +00:00
|
|
|
}'
|