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
@@ -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' },
};