ehristoforu commited on
Commit
e506d70
1 Parent(s): 133a32f

Update .env.local.template

Browse files
Files changed (1) hide show
  1. .env.local.template +131 -11
.env.local.template CHANGED
@@ -79,6 +79,26 @@ MODELS=`[
79
  "baseURL": "https://free.gpt.ge/v1"
80
  }]
81
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
82
  {
83
  "name": "gpt-4o",
84
  "displayName": "GPT-4o",
@@ -119,6 +139,26 @@ MODELS=`[
119
  "baseURL": "https://api-inference.huggingface.co/v1"
120
  }]
121
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
122
  {
123
  "name": "dbrx-instruct",
124
  "displayName": "DBRX-Instruct",
@@ -160,9 +200,49 @@ MODELS=`[
160
  }]
161
  },
162
  {
163
- "name": "openchat_3.5",
164
- "displayName": "OpenChat-3.5",
165
- "modelUrl": "https://huggingface.co/openchat/openchat_3.5",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
166
  "websiteUrl": "https://huggingface.co/openchat",
167
  "parameters": {
168
  "temperature": 0.3,
@@ -234,10 +314,30 @@ MODELS=`[
234
  }]
235
  },
236
  {
237
- "name": "llama3-70b-8192",
238
- "displayName": "Llama3-70B",
239
- "modelUrl": "https://huggingface.co/meta-llama/Meta-Llama-3-70B",
240
- "websiteUrl": "https://llama.meta.com/llama3",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
241
  "parameters": {
242
  "temperature": 0.3,
243
  "top_p": 0.8,
@@ -254,10 +354,10 @@ MODELS=`[
254
  }]
255
  },
256
  {
257
- "name": "llama3-8b-8192",
258
- "displayName": "Llama3-8B",
259
- "modelUrl": "https://huggingface.co/meta-llama/Meta-Llama-3-8B",
260
- "websiteUrl": "https://llama.meta.com/llama3",
261
  "parameters": {
262
  "temperature": 0.3,
263
  "top_p": 0.8,
@@ -312,6 +412,26 @@ MODELS=`[
312
  "apiKey": "${VISIONCRAFT_API_KEY}",
313
  "baseURL": "https://visioncraft.top/v1"
314
  }]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
315
  }
316
  ]`
317
 
 
79
  "baseURL": "https://free.gpt.ge/v1"
80
  }]
81
  },
82
+ {
83
+ "name": "gpt-4",
84
+ "displayName": "GPT-4",
85
+ "modelUrl": "https://platform.openai.com/docs/models/gpt-4",
86
+ "websiteUrl": "https://openai.com/chatgpt",
87
+ "parameters": {
88
+ "temperature": 0.3,
89
+ "top_p": 0.8,
90
+ "repetition_penalty": 0.0,
91
+ "max_tokens": 1024,
92
+ "top_k": 50,
93
+ "truncate": 1000,
94
+ "max_new_tokens": 2048
95
+ },
96
+ "endpoints": [{
97
+ "type" : "openai",
98
+ "apiKey": "${OPENAI_API_KEY}",
99
+ "baseURL": "${ENDPOINT}"
100
+ }]
101
+ },
102
  {
103
  "name": "gpt-4o",
104
  "displayName": "GPT-4o",
 
139
  "baseURL": "https://api-inference.huggingface.co/v1"
140
  }]
141
  },
142
+ {
143
+ "name": "microsoft/Phi-3-mini-4k-instruct",
144
+ "displayName": "Phi-3-mini-4k-instruct",
145
+ "modelUrl": "https://huggingface.co/microsoft/Phi-3-mini-4k-instruct",
146
+ "websiteUrl": "https://azure.microsoft.com/en-us/products/phi-3",
147
+ "parameters": {
148
+ "temperature": 0.3,
149
+ "top_p": 0.8,
150
+ "repetition_penalty": 0.0,
151
+ "max_tokens": 1024,
152
+ "top_k": 50,
153
+ "truncate": 1000,
154
+ "max_new_tokens": 2048
155
+ },
156
+ "endpoints": [{
157
+ "type" : "openai",
158
+ "apiKey": "${HF_TOKEN}",
159
+ "baseURL": "https://api-inference.huggingface.co/v1"
160
+ }]
161
+ },
162
  {
163
  "name": "dbrx-instruct",
164
  "displayName": "DBRX-Instruct",
 
200
  }]
201
  },
202
  {
203
+ "name": "Qwen2-72B-Instruct",
204
+ "displayName": "Qwen2-72B",
205
+ "modelUrl": "https://huggingface.co/Qwen/Qwen2-72B-Instruct",
206
+ "websiteUrl": "https://huggingface.co/Qwen",
207
+ "parameters": {
208
+ "temperature": 0.3,
209
+ "top_p": 0.8,
210
+ "repetition_penalty": 0.0,
211
+ "max_tokens": 1024,
212
+ "top_k": 50,
213
+ "truncate": 1000,
214
+ "max_new_tokens": 2048
215
+ },
216
+ "endpoints": [{
217
+ "type" : "openai",
218
+ "apiKey": "${VISIONCRAFT_API_KEY}",
219
+ "baseURL": "https://visioncraft.top/v1"
220
+ }]
221
+ },
222
+ {
223
+ "name": "Yi-34B-Chat",
224
+ "displayName": "Yi-34B",
225
+ "modelUrl": "https://huggingface.co/01-ai/Yi-34B-Chat",
226
+ "websiteUrl": "https://huggingface.co/01-ai",
227
+ "parameters": {
228
+ "temperature": 0.3,
229
+ "top_p": 0.8,
230
+ "repetition_penalty": 0.0,
231
+ "max_tokens": 1024,
232
+ "top_k": 50,
233
+ "truncate": 1000,
234
+ "max_new_tokens": 2048
235
+ },
236
+ "endpoints": [{
237
+ "type" : "openai",
238
+ "apiKey": "${VISIONCRAFT_API_KEY}",
239
+ "baseURL": "https://visioncraft.top/v1"
240
+ }]
241
+ },
242
+ {
243
+ "name": "openchat-3.6-8b",
244
+ "displayName": "OpenChat-3.6",
245
+ "modelUrl": "https://huggingface.co/openchat/openchat-3.6-8b-20240522",
246
  "websiteUrl": "https://huggingface.co/openchat",
247
  "parameters": {
248
  "temperature": 0.3,
 
314
  }]
315
  },
316
  {
317
+ "name": "llama-3.1-405b-reasoning",
318
+ "displayName": "Llama-3.1-405B",
319
+ "modelUrl": "https://huggingface.co/meta-llama/Meta-Llama-3.1-405B",
320
+ "websiteUrl": "https://llama.meta.com",
321
+ "parameters": {
322
+ "temperature": 0.3,
323
+ "top_p": 0.8,
324
+ "repetition_penalty": 0.0,
325
+ "max_tokens": 1024,
326
+ "top_k": 50,
327
+ "truncate": 1000,
328
+ "max_new_tokens": 2048
329
+ },
330
+ "endpoints": [{
331
+ "type" : "openai",
332
+ "apiKey": "${GROQ_API_KEY}",
333
+ "baseURL": "https://api.groq.com/openai/v1"
334
+ }]
335
+ },
336
+ {
337
+ "name": "llama-3.1-70b-versatile",
338
+ "displayName": "Llama-3.1-70B",
339
+ "modelUrl": "https://huggingface.co/meta-llama/Meta-Llama-3.1-70B",
340
+ "websiteUrl": "https://llama.meta.com",
341
  "parameters": {
342
  "temperature": 0.3,
343
  "top_p": 0.8,
 
354
  }]
355
  },
356
  {
357
+ "name": "llama-3.1-8b-instant",
358
+ "displayName": "Llama-3.1-8B",
359
+ "modelUrl": "https://huggingface.co/meta-llama/Meta-Llama-3.1-8B",
360
+ "websiteUrl": "https://llama.meta.com",
361
  "parameters": {
362
  "temperature": 0.3,
363
  "top_p": 0.8,
 
412
  "apiKey": "${VISIONCRAFT_API_KEY}",
413
  "baseURL": "https://visioncraft.top/v1"
414
  }]
415
+ },
416
+ {
417
+ "name": "openai-community/gpt2",
418
+ "displayName": "GPT2",
419
+ "modelUrl": "https://huggingface.co/openai-community/gpt2",
420
+ "websiteUrl": "https://github.com/openai/gpt-2",
421
+ "parameters": {
422
+ "temperature": 0.3,
423
+ "top_p": 0.8,
424
+ "repetition_penalty": 0.0,
425
+ "max_tokens": 1024,
426
+ "top_k": 50,
427
+ "truncate": 1000,
428
+ "max_new_tokens": 1024
429
+ },
430
+ "endpoints": [{
431
+ "type" : "openai",
432
+ "apiKey": "${HF_TOKEN}",
433
+ "baseURL": "https://api-inference.huggingface.co/v1"
434
+ }]
435
  }
436
  ]`
437