Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions Claudette.sublime-settings
Original file line number Diff line number Diff line change
@@ -1,4 +1,23 @@
{
// Provider: "anthropic" (default) or "bedrock" (AWS Bedrock).
// When set to "bedrock", requests are signed with AWS SigV4 and sent
// to the Bedrock runtime endpoint. No api_key is required.
"provider": "anthropic",
// AWS region for Bedrock (only used when provider is "bedrock").
"aws_region": "us-east-1",
// AWS credentials for Bedrock. Resolution order:
// 1. aws_access_key_id + aws_secret_access_key (+ optional aws_session_token)
// 2. AWS_ACCESS_KEY_ID / AWS_SECRET_ACCESS_KEY environment variables
// 3. aws_profile setting (calls `aws configure export-credentials`)
// 4. Default profile via `aws configure export-credentials`
// Steps 3 and 4 require the AWS CLI v2 to be installed and on PATH.
// Resolved credentials are cached per profile until their reported
// Expiration (or for ~15 minutes when no expiration is reported).
// "aws_access_key_id": "",
// "aws_secret_access_key": "",
// "aws_session_token": "",
// "aws_profile": "",
//
// API key configuration. You can define a single key or multiple keys.
//
// Example for a single key:
Expand Down
Loading