Skip to content

Commit 3957b97

Browse files
committed
raise default context window from 128K to 200K
Consistent with #65952. 200K matches the Claude model floor — ensures new models get a sensible default without table updates.
1 parent d80348c commit 3957b97

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

extensions/amazon-bedrock-mantle/discovery.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const DEFAULT_COST = {
1515
cacheWrite: 0,
1616
};
1717

18-
const DEFAULT_CONTEXT_WINDOW = 128_000;
18+
const DEFAULT_CONTEXT_WINDOW = 200_000;
1919
const DEFAULT_MAX_TOKENS = 4096;
2020
const DEFAULT_REFRESH_INTERVAL_SECONDS = 3600; // 1 hour
2121

0 commit comments

Comments
 (0)