Skip to content
Merged
Changes from 1 commit
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
15 changes: 15 additions & 0 deletions packages/types/src/providers/bedrock.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,21 @@ export const bedrockModels = {
maxCachePoints: 1,
cachableFields: ["system"],
},
"amazon.nova-lite-v2:0": {
maxTokens: 5000,
contextWindow: 300_000,
supportsImages: true,
supportsPromptCache: true,
supportsNativeTools: true,
inputPrice: 0.075,
outputPrice: 0.3,
cacheWritesPrice: 0.075, // per million tokens
cacheReadsPrice: 0.01875, // per million tokens
minTokensPerCachePoint: 1,
maxCachePoints: 1,
cachableFields: ["system"],
description: "Amazon Nova 2 Lite - Comparable to Claude Haiku 4.5",
},
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The nova-lite-v2 model should be placed immediately after nova-lite-v1 (line 70) rather than after nova-micro-v1 (line 84). This maintains the logical grouping of model versions together (Pro v1, Pro latency-optimized, Lite v1, Lite v2, Micro v1) which improves code readability and makes it easier to compare related models.

Fix it with Roo Code or mention @roomote and request a fix.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@roomote
Input Price = $0.33
OutputPrice = $2.75
Cache read input tokens will be 75% less than on-demand input token price
Context Window = 1M

Copy link
Contributor Author

@roomote roomote bot Dec 5, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixaroo Clock   See task on Roo Cloud

Fixed the reported issues. All local checks passed.

View commit | Revert commit

"anthropic.claude-sonnet-4-20250514-v1:0": {
maxTokens: 8192,
contextWindow: 200_000,
Expand Down
Loading