Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/tools-helpers-advanced-streaming.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ async function main() {
},
}),
],
model: 'claude-3-5-sonnet-latest',
model: 'claude-sonnet-4-5-20250929',
max_tokens: 1024,
// This limits the conversation to at most 10 back and forth between the API.
max_iterations: 10,
Expand Down
2 changes: 1 addition & 1 deletion examples/tools-helpers-advanced.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ async function main() {
},
}),
],
model: 'claude-3-5-sonnet-latest',
model: 'claude-sonnet-4-5-20250929',
max_tokens: 1024,
// This limits the conversation to at most 10 back and forth between the API.
max_iterations: 10,
Expand Down
2 changes: 1 addition & 1 deletion examples/tools-helpers-json-schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ async function main() {
},
}),
],
model: 'claude-3-5-sonnet-latest',
model: 'claude-sonnet-4-5-20250929',
max_tokens: 1024,
// the maximum number of iterations to run the tool
max_iterations: 10,
Expand Down
2 changes: 1 addition & 1 deletion examples/tools-helpers-zod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ async function main() {
},
}),
],
model: 'claude-3-5-sonnet-latest',
model: 'claude-sonnet-4-5-20250929',
max_tokens: 1024,
// the maximum number of iterations to run the tool
max_iterations: 10,
Expand Down