fix: remove unused MINIMAX_DEFAULT_TEMPERATURE constant

This commit is contained in:
Roo Code 2025-10-25 08:34:53 +00:00
parent 627e98a3fd
commit 8653a05734
2 changed files with 1 additions and 3 deletions

View file

@ -34,5 +34,3 @@ export const miniMaxModels = {
description: `MiniMax-M2 Vision adds multimodal capabilities to the Pro model, supporting image understanding alongside code generation and reasoning tasks.`,
},
} as const satisfies Record<string, ModelInfo>
export const MINIMAX_DEFAULT_TEMPERATURE = 0.7

View file

@ -1,4 +1,4 @@
import { miniMaxModels, miniMaxDefaultModelId, MINIMAX_DEFAULT_TEMPERATURE } from "@roo-code/types"
import { miniMaxModels, miniMaxDefaultModelId } from "@roo-code/types"
import type { ApiHandlerOptions } from "../../shared/api"