File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
packages/types/src/providers
webview-ui/src/components/ui/hooks Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ export const LMSTUDIO_DEFAULT_TEMPERATURE = 0
77export const lMStudioDefaultModelId = "mistralai/devstral-small-2505"
88export const lMStudioDefaultModelInfo : ModelInfo = {
99 maxTokens : 8192 ,
10- contextWindow : 200_000 ,
10+ contextWindow : 50_000 ,
1111 supportsImages : true ,
1212 supportsComputerUse : true ,
1313 supportsPromptCache : true ,
Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ import {
3030 glamaDefaultModelId ,
3131 unboundDefaultModelId ,
3232 litellmDefaultModelId ,
33+ lMStudioDefaultModelInfo ,
3334} from "@roo-code/types"
3435
3536import type { RouterModels } from "@roo/api"
@@ -188,7 +189,7 @@ function getSelectedModel({
188189 const info = routerModels . lmstudio && routerModels . lmstudio [ id ]
189190 return {
190191 id,
191- info : info || undefined ,
192+ info : info || lMStudioDefaultModelInfo ,
192193 }
193194 }
194195 case "vscode-lm" : {
You can’t perform that action at this time.
0 commit comments