Fix VLM and Chat Documentation Discrepancies#328
Merged
kovtcharov merged 4 commits intomainfrom Feb 10, 2026
Merged
Conversation
- Update VLM default model to Qwen3-VL-4B-Instruct-GGUF (was Qwen2.5-VL-7B) - Fix VLM timeout: 300s for extraction, 60s for loading (was 60s for both) - Fix ChatConfig assistant_name default to "gaia" (was "assistant") - Remove invalid Qwen3-VL-8B model example Aligns documentation with implementation in src/gaia/llm/vlm_client.py and src/gaia/chat/sdk.py
Update RAGConfig default VLM model from Qwen2.5-VL-7B-Instruct-GGUF to Qwen3-VL-4B-Instruct-GGUF for consistency with VLMClient and other GAIA components (EMR, SD agents). This ensures consistent VLM model defaults across the framework.
- Update all Qwen2.5-VL-7B references to Qwen3-VL-4B across docs - Document VLM MIME type auto-detection (PNG, JPEG, GIF, WebP, BMP) - Normalize RAG SDK to use Qwen3-VL-4B for consistency Files updated: - src/gaia/rag/sdk.py (code) - docs/spec/rag-sdk.mdx - docs/reference/cli.mdx - docs/guides/chat.mdx - docs/spec/vlm-client.mdx
73bffff to
0244b48
Compare
- Update Qwen3-30B → Qwen3-Coder-30B (full model name) - Update Qwen2.5-VL → Qwen3-VL-4B Installer plan now uses correct, current model names.
0244b48 to
f461d5c
Compare
kovtcharov-amd
approved these changes
Feb 9, 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
Comprehensive fixes for VLM and RAG documentation discrepancies identified in detailed documentation review.
Changes (6 files)
1. docs/spec/vlm-client.mdx
Qwen2.5-VL-7B→Qwen3-VL-4B-Instruct-GGUF(8 occurrences)2. src/gaia/rag/sdk.py (CODE)
Qwen2.5-VL-7B→Qwen3-VL-4B-Instruct-GGUF3. docs/spec/rag-sdk.mdx
Qwen2.5-VL-7B→Qwen3-VL-4B4. docs/reference/cli.mdx
Qwen2.5-VL-7B→Qwen3-VL-4B5. docs/guides/chat.mdx
assistant_namedefault:"assistant"→"gaia"Qwen2.5-VL-7B→Qwen3-VL-4B6. src/gaia/vlm/mixin.py (CODE)
Qwen3-VL-8B-Instruct-GGUFexample (model doesn't exist)Verification
All changes verified against implementation:
src/gaia/llm/vlm_client.py:73- Qwen3-VL-4B default ✓src/gaia/llm/vlm_client.py:253- 300s timeout ✓src/gaia/llm/vlm_client.py:27-58- MIME detection ✓src/gaia/chat/sdk.py:39- "gaia" assistant_name ✓Impact
Testing