Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

.env 1.6 KB

You have to be logged in to leave a comment. Sign In
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
  1. # Use .env.local to change these variables, or directly change your env
  2. # DO NOT EDIT THIS FILE WITH SENSITIVE DATA
  3. MONGODB_URL=#your mongodb URL here
  4. MONGODB_DB_NAME=chat-ui
  5. COOKIE_NAME=hf-chat
  6. # Increase depending on the model
  7. PUBLIC_MAX_INPUT_TOKENS=1000
  8. PUBLIC_ORIGIN=#https://hf.co
  9. PUBLIC_MODEL_NAME=OpenAssistant/oasst-sft-6-llama-30b # public facing link
  10. PUBLIC_MODEL_ID=OpenAssistant/oasst-sft-6-llama-30b-xor # used to link to model page
  11. PUBLIC_DISABLE_INTRO_TILES=false
  12. PUBLIC_USER_MESSAGE_TOKEN=<|prompter|>
  13. PUBLIC_ASSISTANT_MESSAGE_TOKEN=<|assistant|>
  14. PUBLIC_SEP_TOKEN=</s>
  15. PUBLIC_PREPROMPT="Below are a series of dialogues between various people and an AI assistant. The AI tries to be helpful, polite, honest, sophisticated, emotionally aware, and humble-but-knowledgeable. The assistant is happy to help with almost anything, and will do its best to understand exactly what is needed. It also tries to avoid giving false or misleading information, and it caveats when it isn't entirely sure about the right answer. That said, the assistant is practical and really does its best, and doesn't let caution get too much in the way of being useful."
  16. PUBLIC_VERSION=0
  17. PUBLIC_GOOGLE_ANALYTICS_ID=#G-XXXXXXXX / Leave empty to disable
  18. # Copy this in .env.local with and replace "hf_<token>" your HF token from https://huggingface.co/settings/token
  19. # You can also change the model from OpenAssistant/oasst-sft-4-pythia-12b-epoch-3.5 to your own model
  20. MODEL_ENDPOINTS=`[{
  21. "endpoint": "https://api-inference.huggingface.co/models/OpenAssistant/oasst-sft-4-pythia-12b-epoch-3.5",
  22. "authorization": "Bearer hf_<token>",
  23. "weight": 1
  24. }]`
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...