CoolFace
Apppublic

codeanyway-ada/ada

sourceHugging Faceupdated 3y agoView on Hugging Face
0likes
.env.local.template72 linesDownload Raw Back to root
1# Use .env.local to change these variables2# DO NOT EDIT THIS FILE WITH SENSITIVE DATA3 4MONGODB_URL=${MONGODB_URL}5MONGODB_DB_NAME=chat-ui6MONGODB_DIRECT_CONNECTION=false7 8 9COOKIE_NAME=chat-ui10HF_ACCESS_TOKEN=#hf_<token> from from https://huggingface.co/settings/token11 12# used to activate search with web functionality. disabled if not defined13SERPAPI_KEY=#your serpapi key here14 15# Parameters to enable "Sign in with HF"16OPENID_CLIENT_ID=17OPENID_CLIENT_SECRET=18OPENID_SCOPES="openid profile" # Add "email" for some providers like Google that do not provide preferred_username19OPENID_PROVIDER_URL=https://huggingface.co # for Google, use https://accounts.google.com20 21 22# 'name', 'userMessageToken', 'assistantMessageToken' are required23MODELS=`[24  {25    "name": "${MODEL_NAME}",26    "userMessageToken": "<|prompter|>",27    "assistantMessageToken": "<|assistant|>",28    "messageEndToken": "<|endoftext|>",29    "preprompt": "",30    "promptExamples": [31      {32        "title": "Python Fibonacci",33        "prompt": "How can I write a Python function to generate the nth Fibonacci number?"34      }, {35        "title": "What is a meme?",36        "prompt": "What is a meme, and what's the history behind this word?"37      }, {38        "title": "Regex",39        "prompt": "Create a regex to extract dates from logs"40      }41    ],42    "endpoints": [43      {44        "url": "http://127.0.0.1:8080"45      }46    ],47    "parameters": ${MODEL_PARAMS}48  }49]`50OLD_MODELS=`[]`# any removed models, `{ name: string, displayName?: string, id?: string }`51 52PUBLIC_ORIGIN=${SPACE_HOST}53PUBLIC_SHARE_PREFIX=${SPACE_HOST}/r54PUBLIC_GOOGLE_ANALYTICS_ID=#G-XXXXXXXX / Leave empty to disable55PUBLIC_DEPRECATED_GOOGLE_ANALYTICS_ID=#UA-XXXXXXXX-X / Leave empty to disable56PUBLIC_ANNOUNCEMENT_BANNERS=`[57  {58    "title": "Chat UI is now open sourced on GitHub",59    "linkTitle": "GitHub repo",60    "linkHref": "https://github.com/huggingface/chat-ui"61  }62]`63 64PARQUET_EXPORT_DATASET=65PARQUET_EXPORT_HF_TOKEN=66PARQUET_EXPORT_SECRET=67 68PUBLIC_APP_NAME=${APP_NAME} # name used as title throughout the app69PUBLIC_APP_ASSETS=chatui # used to find logos & favicons in static/$PUBLIC_APP_ASSETS70PUBLIC_APP_COLOR=${APP_COLOR} # can be any of tailwind colors: https://tailwindcss.com/docs/customizing-colors#default-color-palette71PUBLIC_APP_DATA_SHARING=#set to 1 to enable disclaimers & options about data sharing72PUBLIC_APP_DATA_DISCLAIMER=#set to 1 to enable disclaimers about model outputs