mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-05-03 16:34:31 -07:00
feat(core): Align internal agent settings with configs exposed through settings.json (#16458)
This commit is contained in:
@@ -43,8 +43,14 @@ const mockDefinition: LocalAgentDefinition = {
|
||||
},
|
||||
},
|
||||
},
|
||||
modelConfig: { model: 'gemini-test-model', temp: 0, top_p: 1 },
|
||||
runConfig: { max_time_minutes: 5 },
|
||||
modelConfig: {
|
||||
model: 'gemini-test-model',
|
||||
generateContentConfig: {
|
||||
temperature: 0,
|
||||
topP: 1,
|
||||
},
|
||||
},
|
||||
runConfig: { maxTimeMinutes: 5 },
|
||||
promptConfig: { systemPrompt: 'You are a test agent.' },
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user