118 lines
4.8 KiB
Plaintext
118 lines
4.8 KiB
Plaintext
# To customize your server, make a copy of this file to `.env` and edit any
|
|
# values you want to change. Be sure to remove the `#` at the beginning of each
|
|
# line you want to modify.
|
|
|
|
# All values have reasonable defaults, so you only need to change the ones you
|
|
# want to override.
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# General settings:
|
|
|
|
# The title displayed on the info page.
|
|
# SERVER_TITLE=Coom Tunnel
|
|
|
|
# Model requests allowed per minute per user.
|
|
# MODEL_RATE_LIMIT=4
|
|
|
|
# Max number of context tokens a user can request at once.
|
|
# Increase this if your proxy allow GPT 32k or 128k context
|
|
# MAX_CONTEXT_TOKENS_OPENAI=16384
|
|
|
|
# Max number of output tokens a user can request at once.
|
|
# MAX_OUTPUT_TOKENS_OPENAI=400
|
|
# MAX_OUTPUT_TOKENS_ANTHROPIC=400
|
|
|
|
# Whether to show the estimated cost of consumed tokens on the info page.
|
|
# SHOW_TOKEN_COSTS=false
|
|
|
|
# Whether to automatically check API keys for validity.
|
|
# Note: CHECK_KEYS is disabled by default in local development mode, but enabled
|
|
# by default in production mode.
|
|
# CHECK_KEYS=true
|
|
|
|
# Which model types users are allowed to access.
|
|
# If you want to restrict access to certain models, uncomment the line below and list only the models you want to allow,
|
|
# separated by commas. By default, all models are allowed. The following model families are recognized:
|
|
# turbo | gpt4 | gpt4-32k | gpt4-turbo | claude | bison | aws-claude
|
|
# ALLOWED_MODEL_FAMILIES=turbo,gpt4-turbo,aws-claude
|
|
|
|
# URLs from which requests will be blocked.
|
|
# BLOCKED_ORIGINS=reddit.com,9gag.com
|
|
# Message to show when requests are blocked.
|
|
# BLOCK_MESSAGE="You must be over the age of majority in your country to use this service."
|
|
# Destination to redirect blocked requests to.
|
|
# BLOCK_REDIRECT="https://roblox.com/"
|
|
|
|
# Whether to reject requests containing disallowed content.
|
|
# REJECT_DISALLOWED=false
|
|
# Message to show when requests are rejected.
|
|
# REJECT_MESSAGE="This content violates /aicg/'s acceptable use policy."
|
|
|
|
# Whether prompts should be logged to Google Sheets.
|
|
# Requires additional setup. See `docs/google-sheets.md` for more information.
|
|
# PROMPT_LOGGING=false
|
|
|
|
# The port to listen on.
|
|
# PORT=7860
|
|
|
|
# Whether cookies should be set without the Secure flag, for hosts that don't support SSL.
|
|
# USE_INSECURE_COOKIES=false
|
|
|
|
# Detail level of logging. (trace | debug | info | warn | error)
|
|
# LOG_LEVEL=info
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# Optional settings for user management, access control, and quota enforcement:
|
|
# See `docs/user-management.md` for more information and setup instructions.
|
|
# See `docs/user-quotas.md` to learn how to set up quotas.
|
|
|
|
# Which access control method to use. (none | proxy_key | user_token)
|
|
# GATEKEEPER=none
|
|
# Which persistence method to use. (memory | firebase_rtdb)
|
|
# GATEKEEPER_STORE=memory
|
|
|
|
# Maximum number of unique IPs a user can connect from. (0 for unlimited)
|
|
# MAX_IPS_PER_USER=0
|
|
# Whether user_tokens should be automatically disabled when reaching the IP limit.
|
|
# MAX_IPS_AUTO_BAN=true
|
|
|
|
# With user_token gatekeeper, whether to allow users to change their nickname.
|
|
# ALLOW_NICKNAME_CHANGES=true
|
|
|
|
# Default token quotas for each model family. (0 for unlimited)
|
|
# TOKEN_QUOTA_TURBO=0
|
|
# TOKEN_QUOTA_GPT4=0
|
|
# TOKEN_QUOTA_GPT4_32K=0
|
|
# TOKEN_QUOTA_CLAUDE=0
|
|
|
|
# How often to refresh token quotas. (hourly | daily)
|
|
# Leave unset to never automatically refresh quotas.
|
|
# QUOTA_REFRESH_PERIOD=daily
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# Secrets and keys:
|
|
# Do not put any passwords or API keys directly in this file.
|
|
# For Huggingface, set them via the Secrets section in your Space's config UI.
|
|
# For Render, create a "secret file" called .env using the Environment tab.
|
|
|
|
# You can add multiple API keys by separating them with a comma.
|
|
# For AWS credentials, separate the access key ID, secret key, and region with a colon.
|
|
OPENAI_KEY=sk-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
ANTHROPIC_KEY=sk-ant-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
# See `docs/aws-configuration.md` for more information, there may be additional steps required to set up AWS.
|
|
AWS_CREDENTIALS=myaccesskeyid:mysecretkey:us-east-1,anotheraccesskeyid:anothersecretkey:us-west-2
|
|
|
|
# With proxy_key gatekeeper, the password users must provide to access the API.
|
|
# PROXY_KEY=your-secret-key
|
|
|
|
# With user_token gatekeeper, the admin password used to manage users.
|
|
# ADMIN_KEY=your-very-secret-key
|
|
|
|
# With firebase_rtdb gatekeeper storage, the Firebase project credentials.
|
|
# FIREBASE_KEY=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
# FIREBASE_RTDB_URL=https://xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx.firebaseio.com
|
|
|
|
# With prompt logging, the Google Sheets credentials.
|
|
# GOOGLE_SHEETS_SPREADSHEET_ID=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
# GOOGLE_SHEETS_KEY=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|