.env.template 894 B

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