Skip to content

Commit b405f1e

Browse files
committed
fix: up subagent iterations to 200 from 50
1 parent d73389a commit b405f1e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/agent/src/tools/interaction/agentStart.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ type ReturnType = z.infer<typeof returnSchema>;
6464

6565
// Sub-agent specific configuration
6666
const subAgentConfig = {
67-
maxIterations: 50,
67+
maxIterations: 200,
6868
model: getModel('anthropic', 'claude-3-7-sonnet-20250219'),
6969
maxTokens: 4096,
7070
temperature: 0.7,

packages/agent/src/tools/interaction/subAgent.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ type ReturnType = z.infer<typeof returnSchema>;
4242

4343
// Sub-agent specific configuration
4444
const subAgentConfig = {
45-
maxIterations: 50,
45+
maxIterations: 200,
4646
model: getModel('anthropic', 'claude-3-7-sonnet-20250219'),
4747
maxTokens: 4096,
4848
temperature: 0.7,

0 commit comments

Comments
 (0)