mirror of
https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web.git
synced 2025-05-30 17:40:22 +09:00

Adds support for using models hosted on AWS Bedrock, specifically Anthropic Claude models. Key changes: - Added '@aws-sdk/client-bedrock-runtime' dependency. - Updated constants, server config, and auth logic for Bedrock. - Implemented backend API handler () to communicate with the Bedrock API, handling streaming and non-streaming responses, and formatting output to be OpenAI compatible. - Updated dynamic API router () to dispatch requests to the Bedrock handler. - Created frontend client () and updated client factory (). - Updated with necessary Bedrock environment variables (AWS keys, region, enable flag) and an example for using to alias Bedrock models.
103 lines
2.6 KiB
Plaintext
103 lines
2.6 KiB
Plaintext
# Your openai api key. (required)
|
|
OPENAI_API_KEY=sk-xxxx
|
|
|
|
# DeepSeek Api Key. (Optional)
|
|
DEEPSEEK_API_KEY=
|
|
|
|
# Access password, separated by comma. (optional)
|
|
CODE=your-password
|
|
|
|
# You can start service behind a proxy. (optional)
|
|
PROXY_URL=http://localhost:7890
|
|
|
|
# Enable MCP functionality (optional)
|
|
# Default: Empty (disabled)
|
|
# Set to "true" to enable MCP functionality
|
|
ENABLE_MCP=
|
|
|
|
# (optional)
|
|
# Default: Empty
|
|
# Google Gemini Pro API key, set if you want to use Google Gemini Pro API.
|
|
GOOGLE_API_KEY=
|
|
|
|
# (optional)
|
|
# Default: https://generativelanguage.googleapis.com/
|
|
# Google Gemini Pro API url without pathname, set if you want to customize Google Gemini Pro API url.
|
|
GOOGLE_URL=
|
|
|
|
# Override openai api request base url. (optional)
|
|
# Default: https://api.openai.com
|
|
# Examples: http://your-openai-proxy.com
|
|
BASE_URL=
|
|
|
|
# Specify OpenAI organization ID.(optional)
|
|
# Default: Empty
|
|
OPENAI_ORG_ID=
|
|
|
|
# (optional)
|
|
# Default: Empty
|
|
# If you do not want users to use GPT-4, set this value to 1.
|
|
DISABLE_GPT4=
|
|
|
|
# (optional)
|
|
# Default: Empty
|
|
# If you do not want users to input their own API key, set this value to 1.
|
|
HIDE_USER_API_KEY=
|
|
|
|
# (optional)
|
|
# Default: Empty
|
|
# If you do want users to query balance, set this value to 1.
|
|
ENABLE_BALANCE_QUERY=
|
|
|
|
# (optional)
|
|
# Default: Empty
|
|
# If you want to disable parse settings from url, set this value to 1.
|
|
DISABLE_FAST_LINK=
|
|
|
|
# (optional)
|
|
# Default: Empty
|
|
# 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.
|
|
CUSTOM_MODELS=-all,+gpt-4o-2024-11-20@openai=gpt-4o,+gpt-4o-mini@openai,+us.anthropic.claude-3-5-sonnet-20241022-v2:0@bedrock=sonnet
|
|
|
|
# (optional)
|
|
# Default: Empty
|
|
# Change default model
|
|
DEFAULT_MODEL=
|
|
|
|
# anthropic claude Api Key.(optional)
|
|
ANTHROPIC_API_KEY=
|
|
|
|
### anthropic claude Api version. (optional)
|
|
ANTHROPIC_API_VERSION=
|
|
|
|
### anthropic claude Api url (optional)
|
|
ANTHROPIC_URL=
|
|
|
|
### (optional)
|
|
WHITE_WEBDAV_ENDPOINTS=
|
|
|
|
### siliconflow Api key (optional)
|
|
SILICONFLOW_API_KEY=
|
|
|
|
### siliconflow Api url (optional)
|
|
SILICONFLOW_URL=
|
|
|
|
# --- AWS Bedrock Section ---
|
|
# Ensure these lines for keys either have placeholder values like below,
|
|
# are commented out entirely, or removed if they shouldn't be in the template.
|
|
|
|
# AWS Access Key for Bedrock API (Example: Use placeholder or comment out)
|
|
# AWS_ACCESS_KEY_ID=
|
|
|
|
# AWS Secret Access Key for Bedrock API (Example: Use placeholder or comment out)
|
|
# AWS_SECRET_ACCESS_KEY=
|
|
|
|
# AWS Region for Bedrock API (e.g. us-east-1, us-west-2)
|
|
AWS_REGION=
|
|
|
|
# Enable AWS Bedrock models (set to "true" to enable)
|
|
ENABLE_AWS_BEDROCK=
|
|
|
|
# Custom endpoint URL for AWS Bedrock (optional)
|
|
AWS_BEDROCK_ENDPOINT=
|