FREDFRED commited on
Commit
0412353
1 Parent(s): d392e12

Update .env.local.template

Browse files
Files changed (1) hide show
  1. .env.local.template +17 -22
.env.local.template CHANGED
@@ -20,32 +20,27 @@ OPENID_PROVIDER_URL=https://huggingface.co # for Google, use https://accounts.go
20
 
21
 
22
  # 'name', 'userMessageToken', 'assistantMessageToken' are required
 
23
  MODELS=`[
24
  {
25
- "name": "${MODEL_NAME}",
26
- "chatPromptTemplate": "${MODEL_PROMPT_TEMPLATE}",
27
- "preprompt": "",
28
- "promptExamples": [
29
- {
30
- "title": "Python Fibonacci",
31
- "prompt": "How can I write a Python function to generate the nth Fibonacci number?"
32
- }, {
33
- "title": "What is a meme?",
34
- "prompt": "What is a meme, and what's the history behind this word?"
35
- }, {
36
- "title": "Regex",
37
- "prompt": "Create a regex to extract dates from logs"
38
- }
39
- ],
40
- "endpoints": [
41
- {
42
- "type": "tgi",
43
- "url": "http://127.0.0.1:8080"
44
- }
45
- ],
46
- "parameters": ${MODEL_PARAMS}
47
  }
48
  ]`
 
49
  OLD_MODELS=`[]`# any removed models, `{ name: string, displayName?: string, id?: string }`
50
 
51
  PUBLIC_ORIGIN=${SPACE_HOST}
 
20
 
21
 
22
  # 'name', 'userMessageToken', 'assistantMessageToken' are required
23
+ OPENAI_API_KEY=${OPENAI_API_KEY}
24
  MODELS=`[
25
  {
26
+ "name": "ling-chatml",
27
+ "id": "ling-chatml",
28
+ "parameters": {
29
+ "temperature": 0.9,
30
+ "top_p": 0.95,
31
+ "repetition_penalty": 1.2,
32
+ "top_k": 50,
33
+ "truncate": 1000,
34
+ "max_new_tokens": 1024,
35
+ "stop": []
36
+ },
37
+ "endpoints": [{
38
+ "type" : "openai",
39
+ "baseURL": "http://180.184.37.242:8081/v1"
40
+ }]
 
 
 
 
 
 
 
41
  }
42
  ]`
43
+
44
  OLD_MODELS=`[]`# any removed models, `{ name: string, displayName?: string, id?: string }`
45
 
46
  PUBLIC_ORIGIN=${SPACE_HOST}