Spaces:
Paused
Paused
ehristoforu
commited on
Update .env.local.template
Browse files- .env.local.template +31 -4
.env.local.template
CHANGED
@@ -6,7 +6,7 @@ MONGODB_DB_NAME=chat-ui
|
|
6 |
MONGODB_DIRECT_CONNECTION=false
|
7 |
|
8 |
|
9 |
-
COOKIE_NAME=
|
10 |
HF_ACCESS_TOKEN=
|
11 |
|
12 |
|
@@ -14,7 +14,7 @@ HF_ACCESS_TOKEN=
|
|
14 |
OPENID_CLIENT_ID=${OPENID_CLIENT_ID}
|
15 |
OPENID_CLIENT_SECRET=${OPENID_CLIENT_SECRET}
|
16 |
OPENID_SCOPES="openid profile"
|
17 |
-
OPENID_PROVIDER_URL=
|
18 |
|
19 |
|
20 |
|
@@ -324,7 +324,29 @@ MODELS=`[
|
|
324 |
"apiKey": "${GROQ_API_KEY}",
|
325 |
"baseURL": "https://api.groq.com/openai/v1"
|
326 |
}]
|
327 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
328 |
]`
|
329 |
|
330 |
OLD_MODELS=`[]`
|
@@ -351,4 +373,9 @@ PUBLIC_APP_ASSETS=chatui # used to find logos & favicons in static/$PUBLIC_APP_A
|
|
351 |
PUBLIC_APP_COLOR=${APP_COLOR} # can be any of tailwind colors: https://tailwindcss.com/docs/customizing-colors#default-color-palette
|
352 |
PUBLIC_APP_DATA_SHARING=1#set to 1 to enable disclaimers & options about data sharing
|
353 |
PUBLIC_APP_DATA_DISCLAIMER1=#set to 1 to enable disclaimers about model outputs
|
354 |
-
PUBLIC_APP_DISCLAIMER_MESSAGE="Disclaimer: AI is an area of active research with known problems such as biased generation and misinformation. Do not use this application for high-stakes decisions or advice. Do not insert your personal data, especially sensitive, like health data."
|
|
|
|
|
|
|
|
|
|
|
|
6 |
MONGODB_DIRECT_CONNECTION=false
|
7 |
|
8 |
|
9 |
+
COOKIE_NAME=Solatium
|
10 |
HF_ACCESS_TOKEN=
|
11 |
|
12 |
|
|
|
14 |
OPENID_CLIENT_ID=${OPENID_CLIENT_ID}
|
15 |
OPENID_CLIENT_SECRET=${OPENID_CLIENT_SECRET}
|
16 |
OPENID_SCOPES="openid profile"
|
17 |
+
OPENID_PROVIDER_URL=https://huggingface.co
|
18 |
|
19 |
|
20 |
|
|
|
324 |
"apiKey": "${GROQ_API_KEY}",
|
325 |
"baseURL": "https://api.groq.com/openai/v1"
|
326 |
}]
|
327 |
+
},
|
328 |
+
{
|
329 |
+
"name": "llama2-70b-4096",
|
330 |
+
"displayName": "Llama2-70B",
|
331 |
+
"description": "Generation over generation, Meta Llama 2 demonstrates state-of-the-art performance on a wide range of industry benchmarks and offers new capabilities, including improved reasoning.",
|
332 |
+
"logoUrl": "https://pl-public-data.s3.amazonaws.com/assets_lightning/Lit_LLaMA_Badge3x.png",
|
333 |
+
"modelUrl": "https://huggingface.co/meta-llama/Llama-2-70b",
|
334 |
+
"websiteUrl": "https://llama.meta.com/llama2",
|
335 |
+
"parameters": {
|
336 |
+
"temperature": 0.3,
|
337 |
+
"top_p": 0.8,
|
338 |
+
"repetition_penalty": 0.0,
|
339 |
+
"max_tokens": 1024,
|
340 |
+
"top_k": 50,
|
341 |
+
"truncate": 1000,
|
342 |
+
"max_new_tokens": 2048
|
343 |
+
},
|
344 |
+
"endpoints": [{
|
345 |
+
"type" : "openai",
|
346 |
+
"apiKey": "${GROQ_API_KEY}",
|
347 |
+
"baseURL": "https://api.groq.com/openai/v1"
|
348 |
+
}]
|
349 |
+
},
|
350 |
]`
|
351 |
|
352 |
OLD_MODELS=`[]`
|
|
|
373 |
PUBLIC_APP_COLOR=${APP_COLOR} # can be any of tailwind colors: https://tailwindcss.com/docs/customizing-colors#default-color-palette
|
374 |
PUBLIC_APP_DATA_SHARING=1#set to 1 to enable disclaimers & options about data sharing
|
375 |
PUBLIC_APP_DATA_DISCLAIMER1=#set to 1 to enable disclaimers about model outputs
|
376 |
+
PUBLIC_APP_DISCLAIMER_MESSAGE="Disclaimer: AI is an area of active research with known problems such as biased generation and misinformation. Do not use this application for high-stakes decisions or advice. Do not insert your personal data, especially sensitive, like health data."
|
377 |
+
|
378 |
+
ENABLE_ASSISTANTS=true
|
379 |
+
ENABLE_ASSISTANTS_RAG=true
|
380 |
+
REQUIRE_FEATURED_ASSISTANTS=true
|
381 |
+
EXPOSE_API=true
|