Skip to content

Commit 39145fb

Browse files
chore: increase SOURCEBOT_CHAT_MAX_STEP_COUNT default to 100 (#1017)
* chore: increase SOURCEBOT_CHAT_MAX_STEP_COUNT default to 100 Allows chat sessions to perform more autonomous steps before stopping. Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com> * chore: update CHANGELOG for PR #1017 --------- Co-authored-by: Claude Haiku 4.5 <noreply@anthropic.com>
1 parent e29056b commit 39145fb

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
### Changed
11+
- Increased `SOURCEBOT_CHAT_MAX_STEP_COUNT` default from 20 to 100 to allow agents to perform more autonomous steps. [#1017](https://github.com/sourcebot-dev/sourcebot/pull/1017)
12+
1013
## [4.15.9] - 2026-03-17
1114

1215
### Added

packages/shared/src/env.server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ const options = {
238238
AWS_REGION: z.string().optional(),
239239

240240
SOURCEBOT_CHAT_MODEL_TEMPERATURE: numberSchema.default(0.3),
241-
SOURCEBOT_CHAT_MAX_STEP_COUNT: numberSchema.default(20),
241+
SOURCEBOT_CHAT_MAX_STEP_COUNT: numberSchema.default(100),
242242

243243
DEBUG_WRITE_CHAT_MESSAGES_TO_FILE: booleanSchema.default('false'),
244244

0 commit comments

Comments
 (0)