feat(core): Add real model string (#86)

This commit is contained in:
joshualitt
2025-12-16 09:22:50 -08:00
committed by Tommaso Sciortino
parent 0188599642
commit d4f1da3934
4 changed files with 12 additions and 16 deletions

View File

@@ -370,7 +370,7 @@ their corresponding top-level category object in your `settings.json` file.
"gemini-3-flash-preview": {
"extends": "chat-base-3",
"modelConfig": {
"model": "fiercefalcon"
"model": "gemini-3-flash-preview"
}
},
"gemini-2.5-pro": {
@@ -504,7 +504,7 @@ their corresponding top-level category object in your `settings.json` file.
},
"chat-compression-3-flash": {
"modelConfig": {
"model": "fiercefalcon"
"model": "gemini-3-flash-preview"
}
},
"chat-compression-2.5-pro": {

View File

@@ -8,10 +8,6 @@ import { ThinkingLevel } from '@google/genai';
import type { ModelConfigServiceConfig } from '../services/modelConfigService.js';
import { DEFAULT_THINKING_MODE } from './models.js';
// TODO(joshualitt): This is safe for orions belt, but this change SHOULD NOT
// be merged when orions belt is merged with it's upstream.
export const FLASH_PREVIEW_MODEL_REVERT_BEFORE_MERGE = 'fiercefalcon';
// The default model configs. We use `base` as the parent for all of our model
// configs, while `chat-base`, a child of `base`, is the parent of the models
// we use in the "chat" experience.
@@ -72,7 +68,7 @@ export const DEFAULT_MODEL_CONFIGS: ModelConfigServiceConfig = {
'gemini-3-flash-preview': {
extends: 'chat-base-3',
modelConfig: {
model: FLASH_PREVIEW_MODEL_REVERT_BEFORE_MERGE,
model: 'gemini-3-flash-preview',
},
},
'gemini-2.5-pro': {
@@ -200,7 +196,7 @@ export const DEFAULT_MODEL_CONFIGS: ModelConfigServiceConfig = {
},
'chat-compression-3-flash': {
modelConfig: {
model: FLASH_PREVIEW_MODEL_REVERT_BEFORE_MERGE,
model: 'gemini-3-flash-preview',
},
},
'chat-compression-2.5-pro': {

View File

@@ -50,7 +50,7 @@
}
},
"gemini-3-flash-preview": {
"model": "fiercefalcon",
"model": "gemini-3-flash-preview",
"generateContentConfig": {
"temperature": 1,
"topP": 0.95,
@@ -216,7 +216,7 @@
"generateContentConfig": {}
},
"chat-compression-3-flash": {
"model": "fiercefalcon",
"model": "gemini-3-flash-preview",
"generateContentConfig": {}
},
"chat-compression-2.5-pro": {

File diff suppressed because one or more lines are too long