You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
model: string # Model name: gpt-4o, claude-3-5-sonnet-latest, gemini-2.5-flash, qwen3:4B, ...
161
161
temperature: float # Randomness (0.0-1.0)
162
162
max_tokens: integer # Response length limit
@@ -282,6 +282,12 @@ models:
282
282
provider: google
283
283
model: gemini-2.5-flash
284
284
285
+
# Amazon Bedrock
286
+
models:
287
+
bedrock-claude:
288
+
provider: amazon-bedrock
289
+
model: anthropic.claude-3-5-sonnet-20241022-v2:0
290
+
285
291
# Docker Model Runner (DMR)
286
292
models:
287
293
qwen:
@@ -386,6 +392,57 @@ Troubleshooting:
386
392
- Endpoint empty in status: ensure the Model Runner is running, or set `base_url` manually
387
393
- Flag parsing: if using a single string, quote properly in YAML; you can also use a list
388
394
395
+
#### Amazon Bedrock provider usage
396
+
397
+
The `amazon-bedrock` provider enables access to various AI models hosted on AWS Bedrock, including Anthropic Claude, Amazon Titan, Meta Llama, and Mistral models.
398
+
399
+
**Authentication:**
400
+
401
+
The Bedrock provider supports two authentication methods:
0 commit comments