mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-04-25 04:24:51 -07:00
feat(core): Align internal agent settings with configs exposed through settings.json (#16458)
This commit is contained in:
@@ -33,8 +33,14 @@ const testDefinition: LocalAgentDefinition<z.ZodUnknown> = {
|
||||
priority: { type: 'number', required: false, description: 'prio' },
|
||||
},
|
||||
},
|
||||
modelConfig: { model: 'test', temp: 0, top_p: 1 },
|
||||
runConfig: { max_time_minutes: 1 },
|
||||
modelConfig: {
|
||||
model: 'test',
|
||||
generateContentConfig: {
|
||||
temperature: 0,
|
||||
topP: 1,
|
||||
},
|
||||
},
|
||||
runConfig: { maxTimeMinutes: 1 },
|
||||
promptConfig: { systemPrompt: 'test' },
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user