Skip to content

Commit 49f0c92

Browse files
authored
Add additional AskSage models (RooCodeInc#2090)
* feat: add claude 3.7 + claude 3.5 gov models for asksage * chore: add changeset * chore: numeric separators
1 parent 9c5a1fa commit 49f0c92

File tree

2 files changed

+24
-3
lines changed

2 files changed

+24
-3
lines changed

.changeset/sharp-seas-wink.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"claude-dev": patch
3+
---
4+
5+
add claude 3.7 + claude 3.5 gov for AskSage

src/shared/api.ts

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -894,23 +894,39 @@ export const askSageDefaultURL: string = "https://api.asksage.ai/server"
894894
export const askSageModels = {
895895
"gpt-4o": {
896896
maxTokens: 4096,
897-
contextWindow: 128000,
897+
contextWindow: 128_000,
898898
supportsImages: false,
899899
supportsPromptCache: false,
900900
inputPrice: 0,
901901
outputPrice: 0,
902902
},
903903
"gpt-4o-gov": {
904904
maxTokens: 4096,
905-
contextWindow: 128000,
905+
contextWindow: 128_000,
906906
supportsImages: false,
907907
supportsPromptCache: false,
908908
inputPrice: 0,
909909
outputPrice: 0,
910910
},
911911
"claude-35-sonnet": {
912912
maxTokens: 8192,
913-
contextWindow: 200000,
913+
contextWindow: 200_000,
914+
supportsImages: false,
915+
supportsPromptCache: false,
916+
inputPrice: 0,
917+
outputPrice: 0,
918+
},
919+
"aws-bedrock-claude-35-sonnet-gov": {
920+
maxTokens: 8192,
921+
contextWindow: 200_000,
922+
supportsImages: false,
923+
supportsPromptCache: false,
924+
inputPrice: 0,
925+
outputPrice: 0,
926+
},
927+
"claude-37-sonnet": {
928+
maxTokens: 8192,
929+
contextWindow: 200_000,
914930
supportsImages: false,
915931
supportsPromptCache: false,
916932
inputPrice: 0,

0 commit comments

Comments
 (0)