Max step count is 20 for toolcalls (#1464)

getting user feedback that the max of 3 is not enough and it's ending
abruptly
This commit is contained in:
Will Chen
2025-10-07 16:35:11 -07:00
committed by GitHub
parent d83f5fec83
commit 390d20ae44

View File

@@ -777,7 +777,7 @@ This conversation includes one or more image attachments. When the user uploads
temperature: await getTemperature(settings.selectedModel),
maxRetries: 2,
model: modelClient.model,
stopWhen: [stepCountIs(3), hasToolCall("edit-code")],
stopWhen: [stepCountIs(20), hasToolCall("edit-code")],
providerOptions,
system: systemPromptOverride,
tools,