mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-07 08:26:51 +00:00
Added mistral and deepseek models
This commit is contained in:
parent
336f76baa9
commit
f222e8341c
1 changed files with 4 additions and 1 deletions
|
|
@ -601,6 +601,9 @@ export const mistralModels = {
|
|||
export type UnboundModelId = keyof typeof unboundModels
|
||||
export const unboundDefaultModelId = "gpt-4o"
|
||||
export const unboundModels = {
|
||||
"gpt-4o": openAiNativeModels["gpt-4o"],
|
||||
"claude-3-5-sonnet-20241022": anthropicModels["claude-3-5-sonnet-20241022"],
|
||||
"gpt-4o": openAiNativeModels["gpt-4o"],
|
||||
"deepseek-chat": deepSeekModels["deepseek-chat"],
|
||||
"deepseek-reasoner": deepSeekModels["deepseek-reasoner"],
|
||||
"codestral-latest": mistralModels["codestral-latest"],
|
||||
} as const satisfies Record<string, ModelInfo>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue