Spaces:
Runtime error
Runtime error
# Use .env.local to change these variables | |
# DO NOT EDIT THIS FILE WITH SENSITIVE DATA | |
MONGODB_URL=${MONGODB_URL} | |
MONGODB_DB_NAME=chat-ui | |
MONGODB_DIRECT_CONNECTION=false | |
COOKIE_NAME=chat-ui | |
HF_ACCESS_TOKEN=#hf_<token> from from https://huggingface.co/settings/token | |
# used to activate search with web functionality. disabled if not defined | |
SERPAPI_KEY=#your serpapi key here | |
# Parameters to enable "Sign in with HF" | |
OPENID_CLIENT_ID= | |
OPENID_CLIENT_SECRET= | |
OPENID_SCOPES="openid profile" # Add "email" for some providers like Google that do not provide preferred_username | |
OPENID_PROVIDER_URL=https://huggingface.co # for Google, use https://accounts.google.com | |
# 'name', 'userMessageToken', 'assistantMessageToken' are required | |
MODELS=`[ | |
{ | |
"name": "sunilswain/llama2-7b-chat-EssplTravelPolicy3.7k-epoch5", | |
"datasetName": "sunilswain/llama2-7b-chat-EssplTravelPolicy3.7k-epoch5", | |
"description": "llamas!", | |
"websiteUrl": "https://ai.meta.com/llama/", | |
"userMessageToken": "[INST]", | |
"assistantMessageToken": "[/INST]", | |
"messageEndToken": "</s>", | |
"preprompt": "[INST]<<SYS>>\nYou are a helpful, respectful and honest assistant. Always answer as helpfully as possible, while being safe. Your answers should not include any harmful, unethical, racist, sexist, toxic, dangerous, or illegal content. Please ensure that your responses are socially unbiased and positive in nature.\n\nIf a question does not make any sense, or is not factually coherent, explain why instead of answering something not correct. If you don't know the answer to a question, please don't share false information.<</SYS>>\n\n[/INST]", | |
"promptExamples": [ | |
{ | |
"title": "Write an email from bullet list", | |
"prompt": "As a restaurant owner, write a professional email to the supplier to get these products every week: \n\n- Wine (x10)\n- Eggs (x24)\n- Bread (x12)" | |
}, { | |
"title": "Code a snake game", | |
"prompt": "Code a basic snake game in python, give explanations for each step." | |
}, { | |
"title": "Assist in a task", | |
"prompt": "How do I make a delicious lemon cheesecake?" | |
} | |
], | |
"parameters": { | |
"temperature": 0.3, | |
"top_p": 0.95, | |
"repetition_penalty": 1.2, | |
"top_k": 50, | |
"truncate": 1000, | |
"max_new_tokens": 1024 | |
}, | |
} | |
]` | |
OLD_MODELS=`[]`# any removed models, `{ name: string, displayName?: string, id?: string }` | |
PUBLIC_ORIGIN=${SPACE_HOST} | |
PUBLIC_SHARE_PREFIX=${SPACE_HOST}/r | |
PUBLIC_GOOGLE_ANALYTICS_ID=#G-XXXXXXXX / Leave empty to disable | |
PUBLIC_DEPRECATED_GOOGLE_ANALYTICS_ID=#UA-XXXXXXXX-X / Leave empty to disable | |
PUBLIC_ANNOUNCEMENT_BANNERS=`[ | |
{ | |
"title": "Chat UI is now open sourced on GitHub", | |
"linkTitle": "GitHub repo", | |
"linkHref": "https://github.com/huggingface/chat-ui" | |
} | |
]` | |
PARQUET_EXPORT_DATASET= | |
PARQUET_EXPORT_HF_TOKEN= | |
PARQUET_EXPORT_SECRET= | |
PUBLIC_APP_NAME=${APP_NAME} # name used as title throughout the app | |
PUBLIC_APP_ASSETS=chatui # used to find logos & favicons in static/$PUBLIC_APP_ASSETS | |
PUBLIC_APP_COLOR=${APP_COLOR} # can be any of tailwind colors: https://tailwindcss.com/docs/customizing-colors#default-color-palette | |
PUBLIC_APP_DATA_SHARING=#set to 1 to enable disclaimers & options about data sharing | |
PUBLIC_APP_DATA_DISCLAIMER=#set to 1 to enable disclaimers about model outputs |