ソースを参照

fix: bedrock context window

adamdottv 1 年間 前
コミット
f90d6238ed
1 ファイル変更3 行追加0 行削除
  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,
 	},
 	},
 }
 }