58 lines
2.3 KiB
Plaintext
58 lines
2.3 KiB
Plaintext
# Copy this file to .env and fill in the values you wish to change. Most already
|
|
# have sensible defaults. See config.ts for more details.
|
|
|
|
# PORT=7860
|
|
# SERVER_TITLE=Coom Tunnel
|
|
# MODEL_RATE_LIMIT=4
|
|
# MAX_OUTPUT_TOKENS_OPENAI=300
|
|
# MAX_OUTPUT_TOKENS_ANTHROPIC=900
|
|
# LOG_LEVEL=info
|
|
# REJECT_DISALLOWED=false
|
|
# REJECT_MESSAGE="This content violates /aicg/'s acceptable use policy."
|
|
# CHECK_KEYS=true
|
|
# ALLOWED_MODEL_FAMILIES=claude,turbo,gpt4,gpt4-32k
|
|
# BLOCKED_ORIGINS=reddit.com,9gag.com
|
|
# BLOCK_MESSAGE="You must be over the age of majority in your country to use this service."
|
|
# BLOCK_REDIRECT="https://roblox.com/"
|
|
|
|
# Note: CHECK_KEYS is disabled by default in local development mode, but enabled
|
|
# by default in production mode.
|
|
|
|
# Optional settings for user management, access control, and quota enforcement.
|
|
# See `docs/user-management.md` to learn how to use these.
|
|
# See `docs/user-quotas.md` to learn how to use quotas.
|
|
# GATEKEEPER=none
|
|
# GATEKEEPER_STORE=memory
|
|
# MAX_IPS_PER_USER=20
|
|
# TOKEN_QUOTA_TURBO=0
|
|
# TOKEN_QUOTA_GPT4=0
|
|
# TOKEN_QUOTA_CLAUDE=0
|
|
# QUOTA_REFRESH_PERIOD=hourly
|
|
|
|
# Optional settings for prompt logging. See docs/logging-sheets.md.
|
|
# PROMPT_LOGGING=false
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# The values below are secret -- make sure they are set securely. Do NOT set
|
|
# them in the .env file of a public repository.
|
|
# 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 keys by separating them with a comma.
|
|
OPENAI_KEY=sk-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
ANTHROPIC_KEY=sk-ant-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
|
|
# You can require a Bearer token for requests when using proxy_token gatekeeper.
|
|
# PROXY_KEY=your-secret-key
|
|
|
|
# You can set an admin key for user management when using user_token gatekeeper.
|
|
# ADMIN_KEY=your-very-secret-key
|
|
|
|
# These are used to persist user data to Firebase across restarts.
|
|
# FIREBASE_KEY=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
# FIREBASE_RTDB_URL=https://xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx.firebaseio.com
|
|
|
|
# These are used to log prompts to Google Sheets.
|
|
# GOOGLE_SHEETS_SPREADSHEET_ID=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
# GOOGLE_SHEETS_KEY=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|