docs(vlm): document timeout config field (#1580)#1593
Merged
qin-ctx merged 2 commits intovolcengine:mainfrom Apr 20, 2026
Merged
docs(vlm): document timeout config field (#1580)#1593qin-ctx merged 2 commits intovolcengine:mainfrom
qin-ctx merged 2 commits intovolcengine:mainfrom
Conversation
PR Reviewer Guide 🔍Here are some key observations to aid the review process:
|
PR Code Suggestions ✨No code suggestions found for the PR. |
qin-ctx
approved these changes
Apr 20, 2026
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
PR #1580 (0xble, merged 2026-04-20) added a new
timeoutfield toVLMConfig(default60.0,gt=0.0validation) and wired it through both OpenAI and LiteLLM backends. Users can now setvlm.timeoutinov.confto increase per-request HTTP timeout for slow endpoints (DashScope, local inference, large overview prompts).docs/en/guides/01-configuration.mdanddocs/zh/guides/01-configuration.mdlist the other VLM fields (api_key,model,max_retries,extra_headers,stream, …) in the parameter tables but are missingtimeout. Users who want to raise the timeout have no signal from the docs that the field exists — they have to readvlm_config.pysource or the #1580 PR description.Changes
docs/en/guides/01-configuration.md: +1 row in thevlmParameters table describingtimeout(typefloat, default60.0, must be> 0, slow-endpoint use case mirrored from the Field description invlm_config.py)docs/zh/guides/01-configuration.md: +1 row in the 参数 table (中文描述, 与 EN 镜像)Docs-only change; no code touched.
Related