Browse Source

fix: bedrock context window

adamdottv 9 months ago
parent
commit
f90d6238ed
1 changed files with 3 additions and 0 deletions
  1. 3 0
      internal/llm/models/models.go

+ 3 - 0
internal/llm/models/models.go

@@ -79,6 +79,9 @@ var SupportedModels = map[ModelID]Model{
 		CostPer1MInCached:  3.75,
 		CostPer1MInCached:  3.75,
 		CostPer1MOutCached: 0.30,
 		CostPer1MOutCached: 0.30,
 		CostPer1MOut:       15.0,
 		CostPer1MOut:       15.0,
+		ContextWindow:      200_000,
+		DefaultMaxTokens:   50_000,
+		CanReason:          true,
 	},
 	},
 }
 }