|
| 1 | +# Your openai api key. (required) |
| 2 | +OPENAI_API_KEY=sk-xxxx |
| 3 | + |
| 4 | +# DeepSeek Api Key. (Optional) |
| 5 | +DEEPSEEK_API_KEY= |
| 6 | + |
| 7 | +# Access password, separated by comma. (optional) |
| 8 | +CODE=your-password |
| 9 | + |
| 10 | +# You can start service behind a proxy. (optional) |
| 11 | +PROXY_URL=http://localhost:7890 |
| 12 | + |
| 13 | +# Enable MCP functionality (optional) |
| 14 | +# Default: Empty (disabled) |
| 15 | +# Set to "true" to enable MCP functionality |
| 16 | +ENABLE_MCP= |
| 17 | + |
| 18 | +# (optional) |
| 19 | +# Default: Empty |
| 20 | +# Google Gemini Pro API key, set if you want to use Google Gemini Pro API. |
| 21 | +GOOGLE_API_KEY= |
| 22 | + |
| 23 | +# (optional) |
| 24 | +# Default: https://generativelanguage.googleapis.com/ |
| 25 | +# Google Gemini Pro API url without pathname, set if you want to customize Google Gemini Pro API url. |
| 26 | +GOOGLE_URL= |
| 27 | + |
| 28 | +# Override openai api request base url. (optional) |
| 29 | +# Default: https://api.openai.com |
| 30 | +# Examples: http://your-openai-proxy.com |
| 31 | +BASE_URL= |
| 32 | + |
| 33 | +# Specify OpenAI organization ID.(optional) |
| 34 | +# Default: Empty |
| 35 | +OPENAI_ORG_ID= |
| 36 | + |
| 37 | +# (optional) |
| 38 | +# Default: Empty |
| 39 | +# If you do not want users to use GPT-4, set this value to 1. |
| 40 | +DISABLE_GPT4= |
| 41 | + |
| 42 | +# (optional) |
| 43 | +# Default: Empty |
| 44 | +# If you do not want users to input their own API key, set this value to 1. |
| 45 | +HIDE_USER_API_KEY= |
| 46 | + |
| 47 | +# (optional) |
| 48 | +# Default: Empty |
| 49 | +# If you do want users to query balance, set this value to 1. |
| 50 | +ENABLE_BALANCE_QUERY= |
| 51 | + |
| 52 | +# (optional) |
| 53 | +# Default: Empty |
| 54 | +# If you want to disable parse settings from url, set this value to 1. |
| 55 | +DISABLE_FAST_LINK= |
| 56 | + |
| 57 | +# (optional) |
| 58 | +# Default: Empty |
| 59 | +# To control custom models, use + to add a custom model, use - to hide a model, use name=displayName to customize model name, separated by comma. |
| 60 | +CUSTOM_MODELS= |
| 61 | + |
| 62 | +# (optional) |
| 63 | +# Default: Empty |
| 64 | +# Change default model |
| 65 | +DEFAULT_MODEL= |
| 66 | + |
| 67 | +# anthropic claude Api Key.(optional) |
| 68 | +ANTHROPIC_API_KEY= |
| 69 | + |
| 70 | +### anthropic claude Api version. (optional) |
| 71 | +ANTHROPIC_API_VERSION= |
| 72 | + |
| 73 | +### anthropic claude Api url (optional) |
| 74 | +ANTHROPIC_URL= |
| 75 | + |
| 76 | +### (optional) |
| 77 | +WHITE_WEBDAV_ENDPOINTS= |
| 78 | + |
| 79 | +### siliconflow Api key (optional) |
| 80 | +SILICONFLOW_API_KEY= |
| 81 | + |
| 82 | +### siliconflow Api url (optional) |
| 83 | +SILICONFLOW_URL= |
0 commit comments