.env.template 765 B

123456789101112131415161718192021222324252627282930313233
  1. # Your openai api key. (required)
  2. OPENAI_API_KEY=sk-xxxx
  3. # Access passsword, separated by comma. (optional)
  4. CODE=your-password
  5. # You can start service behind a proxy
  6. PROXY_URL=http://localhost:7890
  7. # Override openai api request base url. (optional)
  8. # Default: https://api.openai.com
  9. # Examples: http://your-openai-proxy.com
  10. BASE_URL=
  11. # Specify OpenAI organization ID.(optional)
  12. # Default: Empty
  13. OPENAI_ORG_ID=
  14. # (optional)
  15. # Default: Empty
  16. # If you do not want users to input their own API key, set this value to 1.
  17. HIDE_USER_API_KEY=
  18. # (optional)
  19. # Default: Empty
  20. # If you do not want users to use GPT-4, set this value to 1.
  21. DISABLE_GPT4=
  22. # (optional)
  23. # Default: Empty
  24. # If you do not want users to query balance, set this value to 1.
  25. HIDE_BALANCE_QUERY=