Skip to content

Commit 283d7d6

Browse files
authored
fix: adjust litellm default context window settings (RooCodeInc#1774)
1 parent 83a2800 commit 283d7d6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/shared/api.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -637,9 +637,9 @@ export const mistralModels = {
637637
export type LiteLLMModelId = string
638638
export const liteLlmDefaultModelId = "gpt-3.5-turbo"
639639
export const liteLlmModelInfoSaneDefaults: ModelInfo = {
640-
maxTokens: 4096,
641-
contextWindow: 8192,
642-
supportsImages: false,
640+
maxTokens: -1,
641+
contextWindow: 128_000,
642+
supportsImages: true,
643643
supportsPromptCache: false,
644644
inputPrice: 0,
645645
outputPrice: 0,

0 commit comments

Comments
 (0)