Skip to content

Commit e07384b

Browse files
authored
Add bedrock inference profiles (#6738)
## 📝 Summary just add inference profiles to existing bedrock models, and add the new ones fixes #6675 solution simplified after discussion on #6695 Note that I couldn't actually properly test this, because marimo seemingly doesn't currently detect or properly implement AWS CLI SSO authorization when using the pre-configured provider - and I only have AWS SSO credentials at $JOB. it only seems to work if you use a custom model. I'm not sure what I changed in #6695 that affected provider authorization, but that was somehow fixed in that PR. ## 🔍 Description of Changes self-evident? ## 📋 Checklist - [x] I have read the [contributor guidelines](https://github.com/marimo-team/marimo/blob/main/CONTRIBUTING.md). - [ ] For large changes, or changes that affect the public API: this change was discussed or approved through an issue, on [Discord](https://marimo.io/discord?ref=pr), or the community [discussions](https://github.com/marimo-team/marimo/discussions) (Please provide a link if applicable). - [ ] I have added tests for the changes made. - [ ] I have run the code and verified that it works as expected.
1 parent 27f0e61 commit e07384b

File tree

1 file changed

+18
-4
lines changed

1 file changed

+18
-4
lines changed

packages/llm-info/data/models.yml

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -221,29 +221,43 @@
221221

222222
# Bedrock
223223

224+
- name: Claude 4.5 Sonnet (Bedrock)
225+
model: global.anthropic.claude-sonnet-4-5-20250929-v1:0
226+
description: Enhanced Sonnet model with improved capabilities
227+
providers: [bedrock]
228+
roles: [chat, edit]
229+
thinking: false
230+
231+
- name: Claude 4.1 Opus (Bedrock)
232+
model: us.anthropic.claude-opus-4-1-20250805-v1:0
233+
description: Opus model for deep thinking
234+
providers: [bedrock]
235+
roles: [chat, edit]
236+
thinking: false
237+
224238
- name: Claude 3.7 Sonnet (Bedrock)
225-
model: anthropic.claude-3-7-sonnet-20250219-v1:0
239+
model: us.anthropic.claude-3-7-sonnet-20250219-v1:0
226240
description: Enhanced Sonnet model with improved capabilities
227241
providers: [bedrock]
228242
roles: [chat, edit]
229243
thinking: false
230244

231245
- name: Claude 3.5 Sonnet v2 (Bedrock)
232-
model: anthropic.claude-3-5-sonnet-20241022-v2:0
246+
model: us.anthropic.claude-3-5-sonnet-20241022-v2:0
233247
description: Balanced model with strong performance across reasoning, math, and coding
234248
providers: [bedrock]
235249
roles: [chat, edit]
236250
thinking: false
237251

238252
- name: Claude 3.5 Haiku (Bedrock)
239-
model: anthropic.claude-3-5-haiku-20241022-v1:0
253+
model: us.anthropic.claude-3-5-haiku-20241022-v1:0
240254
description: Fast and efficient model with excellent performance for everyday tasks
241255
providers: [bedrock]
242256
roles: [chat, edit]
243257
thinking: false
244258

245259
- name: Llama 3.3 70B Instruct
246-
model: meta.llama3-3-70b-instruct-v1:0
260+
model: us.meta.llama3-3-70b-instruct-v1:0
247261
description: Large language model optimized for instruction following and chat
248262
providers: [bedrock]
249263
roles: [chat, edit]

0 commit comments

Comments
 (0)