mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-02-18 00:18:09 +01:00
Merge ec31e78eca into 1143f73f59
This commit is contained in:
commit
71dadc430d
2 changed files with 59 additions and 19 deletions
23
.env.example
23
.env.example
|
|
@ -134,8 +134,31 @@ ANTHROPIC_API_KEY=user_provided
|
|||
#=================#
|
||||
# AWS Bedrock #
|
||||
#=================#
|
||||
# AWS Bedrock Credentials Configuration
|
||||
#
|
||||
# Option 1: Use AWS Profile (RECOMMENDED)
|
||||
# 1. Configure credentials in ~/.aws/credentials or ~/.aws/config
|
||||
# 2. Set BEDROCK_AWS_PROFILE to your profile name
|
||||
# The AWS SDK will automatically use the profile's credentials
|
||||
#
|
||||
# Optional: Enable auto-refresh by configuring credential_process in ~/.aws/config
|
||||
# Example:
|
||||
# [profile your-profile-name]
|
||||
# region = us-west-2
|
||||
# credential_process = your-command-to-fetch-credentials --format json
|
||||
#
|
||||
# See: https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-files.html
|
||||
# For auto-refresh: https://docs.aws.amazon.com/cli/v1/userguide/cli-configure-sourcing-external.html
|
||||
#
|
||||
# Option 2: Use static environment variables (NOT recommended for temporary credentials)
|
||||
# Set BEDROCK_AWS_ACCESS_KEY_ID, BEDROCK_AWS_SECRET_ACCESS_KEY, BEDROCK_AWS_SESSION_TOKEN
|
||||
|
||||
# BEDROCK_AWS_DEFAULT_REGION=us-east-1 # A default region must be provided
|
||||
|
||||
# AWS Profile (Option 1 - RECOMMENDED)
|
||||
# BEDROCK_AWS_PROFILE=your-profile-name
|
||||
|
||||
# Static Credentials (Option 2 - use only if not using profiles)
|
||||
# BEDROCK_AWS_ACCESS_KEY_ID=someAccessKey
|
||||
# BEDROCK_AWS_SECRET_ACCESS_KEY=someSecretAccessKey
|
||||
# BEDROCK_AWS_SESSION_TOKEN=someSessionToken
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue