feat(core): Align internal agent settings with configs exposed through settings.json (#16458)

This commit is contained in:
joshualitt
2026-01-13 14:31:34 -08:00
committed by GitHub
parent 63c918fe7d
commit d66ec38f82
12 changed files with 176 additions and 135 deletions
@@ -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.' },
};