-
Notifications
You must be signed in to change notification settings - Fork 2
/
.env.local.template
executable file
·41 lines (38 loc) · 1.14 KB
/
.env.local.template
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
MONGODB_URL=mongodb://genie:super-secret-password@chat-mongo:27017
#Edit .env.db as well!!!
ALLOW_INSECURE_COOKIES=true
OPENAI_API_BASE=http://127.0.0.1:14000/v1
PUBLIC_APP_NAME=Longevity Genie ChatUI Server
PUBLIC_APP_ASSETS=chatui
#PUBLIC_APP_COLOR=green
PUBLIC_APP_DESCRIPTION="A HuggingChat demonstrator of chat with proxy"
PUBLIC_APP_DATA_SHARING=1
PUBLIC_APP_DISCLAIMER=0
MODELS=`[{
"name": "proxy_gpt-4o-mini",
"displayName": "proxified-gpt-4o",
"description": "OpenAI gpt-4o-mini model served through cache-proxy",
"parameters": {
"temperature": 0.0,
"max_new_tokens": 4096,
"stop": ["[DONE]"]
},
"endpoints": [
{
"type": "openai",
"baseURL": "http://litellm-proxy:4000/v1",
"apiKey": "no_key_needed"
}
],
"promptExamples": [
{
"title": "Why is the sly blue?",
"prompt": "Explain in 10 words hy is the sky blue"
},
{
"title": "Live Long and Prosper in French",
"prompt": "Translate into French: Live Long and Prosper"
}
]
}
]`