fix(llm): make request timeout configurable#341
Open
guix4ever wants to merge 1 commit into
Open
Conversation
guix4ever
marked this pull request as ready for review
July 14, 2026 09:42
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
llm.timeout_secondswith a backward-compatible 60-second default and positive-value validation.everos.tomlandEVEROS_LLM__TIMEOUT_SECONDS.Fixes #333.
Why
EverAlgo already accepts an LLM request timeout and defaults it to 60 seconds, but EverOS did not expose that value in
LLMSettingsor pass it through either LLM construction path. As a result, deployments using slower OpenAI-compatible models could not tune the timeout without changing code, even though embedding and rerank clients already expose equivalent settings.This change keeps the existing default behavior while allowing deployments to adjust the per-request timeout for their model and endpoint.
Area
Verification
Checklist
main..envfiles, dependency folders, or generated output.Notes for Reviewers
The default remains 60 seconds. Tests verify environment-over-TOML precedence, positive-value validation, and propagation through both LLM construction paths. No real provider request is required for this configuration-only change.
By submitting this pull request, I agree that my contribution is licensed under
the Apache License 2.0.