config: increase llama3.1 request_timeout from 120s to 180s#376
Merged
Conversation
The deduplicate_levers batch call completes at ~115s on the silo plan, leaving only a ~5s margin before the 120s timeout. Increasing to 180s gives a comfortable buffer for plans with more levers or longer content. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
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.
Summary
Increases llama3.1
request_timeoutfrom 120s to 180s inllm_config/baseline.json(both local and Docker entries).Why
The
deduplicate_leversbatch call (PR #375) completes at ~115s on the silo plan with llama3.1, leaving only a ~5s margin. In iter 51 (PR #374), llama3.1 timed out on 2/5 plans at exactly 120s. Iter 52 (PR #375) fixed it by shortening justifications, but the margin is fragile.180s gives a comfortable buffer without making slow failures take unreasonably long to detect.
Test plan
🤖 Generated with Claude Code