diff options
| author | adamdottv <[email protected]> | 2025-05-02 13:34:50 -0500 |
|---|---|---|
| committer | Adam <[email protected]> | 2025-05-02 15:24:47 -0500 |
| commit | f90d6238ed7bb3620623df37812d479522145fad (patch) | |
| tree | bfc75ddea7e84aaa23d2f558833d8ce5b61a1d84 /internal | |
| parent | f004a0b8c3a0babe96dea65ad2a524d6b446fd71 (diff) | |
| download | opencode-f90d6238ed7bb3620623df37812d479522145fad.tar.gz opencode-f90d6238ed7bb3620623df37812d479522145fad.zip | |
fix: bedrock context window
Diffstat (limited to 'internal')
| -rw-r--r-- | internal/llm/models/models.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/internal/llm/models/models.go b/internal/llm/models/models.go index 1e1cbde50..3403bec2d 100644 --- a/internal/llm/models/models.go +++ b/internal/llm/models/models.go @@ -79,6 +79,9 @@ var SupportedModels = map[ModelID]Model{ CostPer1MInCached: 3.75, CostPer1MOutCached: 0.30, CostPer1MOut: 15.0, + ContextWindow: 200_000, + DefaultMaxTokens: 50_000, + CanReason: true, }, } |
