Update .env.local.template
Browse files- .env.local.template +25 -0
.env.local.template
CHANGED
@@ -44,6 +44,31 @@ MODELS=`[
|
|
44 |
}
|
45 |
],
|
46 |
"parameters": ${MODEL_PARAMS}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
47 |
}
|
48 |
]`
|
49 |
OLD_MODELS=`[]`# any removed models, `{ name: string, displayName?: string, id?: string }`
|
|
|
44 |
}
|
45 |
],
|
46 |
"parameters": ${MODEL_PARAMS}
|
47 |
+
},
|
48 |
+
{
|
49 |
+
"name": "HuggingFaceH4/starcoder2-15b-dpo-v20-deploy",
|
50 |
+
"chatPromptTemplate": "${MODEL_PROMPT_TEMPLATE}",
|
51 |
+
"description": "StarChat2 v2.0",
|
52 |
+
"preprompt": "",
|
53 |
+
"promptExamples": [
|
54 |
+
{
|
55 |
+
"title": "Python Fibonacci",
|
56 |
+
"prompt": "How can I write a Python function to generate the nth Fibonacci number?"
|
57 |
+
}, {
|
58 |
+
"title": "What is a meme?",
|
59 |
+
"prompt": "What is a meme, and what's the history behind this word?"
|
60 |
+
}, {
|
61 |
+
"title": "Regex",
|
62 |
+
"prompt": "Create a regex to extract dates from logs"
|
63 |
+
}
|
64 |
+
],
|
65 |
+
"endpoints": [
|
66 |
+
{
|
67 |
+
"type": "tgi",
|
68 |
+
"url": "http://127.0.0.1:8081"
|
69 |
+
}
|
70 |
+
],
|
71 |
+
"parameters": ${MODEL_PARAMS}
|
72 |
}
|
73 |
]`
|
74 |
OLD_MODELS=`[]`# any removed models, `{ name: string, displayName?: string, id?: string }`
|