|
|
@@ -599,11 +599,11 @@ export const mistralModels = {
|
|
|
|
|
|
// Unbound Security
|
|
|
export type UnboundModelId = keyof typeof unboundModels
|
|
|
-export const unboundDefaultModelId = "gpt-4o"
|
|
|
+export const unboundDefaultModelId = "openai/gpt-4o"
|
|
|
export const unboundModels = {
|
|
|
- "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"],
|
|
|
+ "anthropic/claude-3-5-sonnet-20241022": anthropicModels["claude-3-5-sonnet-20241022"],
|
|
|
+ "openai/gpt-4o": openAiNativeModels["gpt-4o"],
|
|
|
+ "deepseek/deepseek-chat": deepSeekModels["deepseek-chat"],
|
|
|
+ "deepseek/deepseek-reasoner": deepSeekModels["deepseek-reasoner"],
|
|
|
+ "mistral/codestral-latest": mistralModels["codestral-latest"],
|
|
|
} as const satisfies Record<string, ModelInfo>
|