File tree Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -213,7 +213,18 @@ MODELS=`[
213
213
214
214
OLD_MODELS=`[{"name":"bigcode/starcoder"}, {"name":"OpenAssistant/oasst-sft-6-llama-30b-xor"}, {"name":"HuggingFaceH4/zephyr-7b-alpha"}]`
215
215
216
- TASK_MODEL='mistralai/Mistral-7B-Instruct-v0.2'
216
+ TASK_MODEL=`{
217
+ "name": "mistralai/Mistral-7B-Instruct-v0.2",
218
+ "chatPromptTemplate" : "<s>{{#each messages}}{{#ifUser}}[INST] {{#if @first}}{{#if @root.preprompt}}{{@root.preprompt}}\n{{/if}}{{/if}}{{content}} [/INST]{{/ifUser}}{{#ifAssistant}}{{content}}</s>{{/ifAssistant}}{{/each}}",
219
+ "parameters": {
220
+ "temperature": 0.1,
221
+ "top_p": 0.95,
222
+ "repetition_penalty": 1.2,
223
+ "top_k": 50,
224
+ "truncate": 3072,
225
+ "max_new_tokens": 1024,
226
+ "stop": ["</s>"]
227
+ }}`
217
228
218
229
219
230
APP_BASE="/chat"
You can’t perform that action at this time.
0 commit comments