.env.template 884 B

1234567891011121314151617181920212223242526272829303132333435363738
  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 use GPT-4, set this value to 1.
  17. DISABLE_GPT4=
  18. # (optional)
  19. # Default: Empty
  20. # If you do not want users to input their own API key, set this value to 1.
  21. HIDE_USER_API_KEY=
  22. # (optional)
  23. # Default: Empty
  24. # If you do want users to query balance, set this value to 1.
  25. ENABLE_BALANCE_QUERY=
  26. # (optional)
  27. # Default: Empty
  28. # If you want to disable parse settings from url, set this value to 1.
  29. DISABLE_FAST_LINK=