refactor: Increase Max Chat Completion Iterations default threshold from 10 to 50#125
Merged
refactor: Increase Max Chat Completion Iterations default threshold from 10 to 50#125
Conversation
This change improves the out-of-the-box experience for complex agentic tasks by increasing the default maximum chat completion iterations from 10 to 50. This prevents premature task cancellation during multi-step workflows such as web scraping with multiple pages or complex data processing operations. Changes: - Updated default value in server/config/config.go (10 → 50) - Updated default value in server/agent_builder.go (10 → 50) - Updated default value in server/agent.go (10 → 50) - Updated documentation in README.md to reflect new default - Updated all test files to expect the new default value of 50 - Verified Config.Validate() still enforces minimum of 1 iteration - Verified backward compatibility: environment variable override works Fixes #123 🤖 Generated with [Claude Code](https://claude.ai/code) Co-authored-by: Eden Reich <edenreich@users.noreply.github.com>
edenreich
commented
Dec 13, 2025
edenreich
commented
Dec 13, 2025
edenreich
commented
Dec 13, 2025
Contributor
|
🎉 This PR is included in version 0.16.2 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR addresses issue #123
Generated with Claude Code