|
1 | 1 | # ============================================================================== |
2 | 2 | # LYNKR CONFIGURATION - All Environment Variables |
3 | 3 | # Copy this file to .env and fill in your values |
| 4 | +# |
| 5 | +# FORMAT: Use plain KEY=VALUE syntax (no "export" prefix). |
| 6 | +# Good: MODEL_PROVIDER=bedrock |
| 7 | +# Bad: export MODEL_PROVIDER=bedrock |
4 | 8 | # ============================================================================== |
5 | 9 |
|
6 | 10 | # ============================================================================== |
@@ -91,10 +95,18 @@ OPENROUTER_MAX_TOOLS_FOR_ROUTING=15 |
91 | 95 | # AWS Bedrock Configuration |
92 | 96 | # ============================================================================== |
93 | 97 |
|
94 | | -# Generate from AWS Console → Bedrock → API Keys |
95 | | -# AWS_BEDROCK_API_KEY=your-bedrock-bearer-token |
| 98 | +# IMPORTANT: Lynkr uses Bedrock API Key authentication (Bearer token), |
| 99 | +# NOT standard IAM credentials (AWS_ACCESS_KEY_ID / AWS_SECRET_ACCESS_KEY). |
| 100 | +# |
| 101 | +# Setup: |
| 102 | +# 1. Open AWS Console → Amazon Bedrock → API keys (left sidebar) |
| 103 | +# 2. Generate a long-term or short-term API key |
| 104 | +# 3. Copy the key (starts with ABSK) and set it below |
| 105 | +# Docs: https://docs.aws.amazon.com/bedrock/latest/userguide/api-keys-use.html |
| 106 | +# |
| 107 | +# AWS_BEDROCK_API_KEY=ABSK...your-bedrock-api-key |
96 | 108 | # AWS_BEDROCK_REGION=us-east-1 |
97 | | -# AWS_BEDROCK_MODEL_ID=anthropic.claude-3-5-sonnet-20241022-v2:0 |
| 109 | +# AWS_BEDROCK_MODEL_ID=us.anthropic.claude-3-5-sonnet-20241022-v2:0 |
98 | 110 |
|
99 | 111 | # ============================================================================== |
100 | 112 | # llama.cpp Configuration (Local GGUF Models) |
|
0 commit comments