[Question]: Build docker Image Fail
![[Question]: Build docker Image Fail](https://www.chat-gpts.plus/wp-content/uploads/2026/07/8101-4e47a719-768x403.jpg)
在 RAGFlow 本地构建 Docker 镜像(含 embedding 模型)时卡住,报错多为 [Question]: Build docker Image Fail ,优先排查网络连通性——尤其是使用 NEED_MIRROR=1 时镜像源(如 mirrors.aliyun.com)不可达或超时。
![[Question]: Build docker Image Fail](https://www.chat-gpts.plus/wp-content/uploads/2026/07/8101-4e47a719-768x403.jpg)
在 RAGFlow 本地构建 Docker 镜像(含 embedding 模型)时卡住,报错多为 [Question]: Build docker Image Fail ,优先排查网络连通性——尤其是使用 NEED_MIRROR=1 时镜像源(如 mirrors.aliyun.com)不可达或超时。
![[Bug]: MiniMax-M3 Multimodal Model Crashes During Inference](https://www.chat-gpts.plus/wp-content/uploads/2026/07/49940-e0372e77-768x403.jpg)
运行 MiniMax-M3 多模态模型进行推理时发生崩溃,报错为 CUDA illegal memory access。优先排查是否缺少对 MiniMax-M3 的模型架构支持,并尝试应用 vLLM 项目 PR #49149 中的补丁。
![[testing] making network tests more reliable](https://www.chat-gpts.plus/wp-content/uploads/2026/07/12061-08a35669-768x403.jpg)
该报错通常发生在 Transformers 测试套件或下载 Hub 资源时遇到网络瞬时故障(如 502/500/403 错误)。优先在下载 API 中启用自动重试机制,设置 try_times=3 和 try_sleep_secs=1 。

使用 SeedVR2 7B Int8 模型进行图像放大(Upscale Image Template Workflow)时,VAE 模型存放路径错误导致工作流找不到文件。优先将 ComfyUI 更新到最新版本即可修复。
![[BUG]: MCP servers with nested params in input_schema crash an Anthropic agent](https://www.chat-gpts.plus/wp-content/uploads/2026/07/3938-72cf4071-768x403.jpg)
当 MCP 工具定义的输入参数(input_schema)包含 pydantic 嵌套模型时,Anthropic agent 调用会崩溃。优先排查是否使用了嵌套的 BaseModel,并尝试将参数扁平化。
![[bug]: triton not found; flop counting will not work for triton kernels](https://www.chat-gpts.plus/wp-content/uploads/2026/07/9372-401df1af-768x403.jpg)
该 warning 出现在 InvokeAI 启动时,由 PyTorch 的 FLOP 计数器导入时检查 triton 是否安装导致。InvokeAI 自身不使用 FLOP 计数,因此该 warning 完全无害,可以忽略。如果介意,可安装 triton-windows 消除 warning。
![[Question]: In v0.19.0, In addition to the General chunking method, other methods(like Presentation) still cannot be parsed using the VLM mo](https://www.chat-gpts.plus/wp-content/uploads/2026/07/8186-d319b8b0-768x403.jpg)
在 RAGFlow v0.19.0 中,使用 Presentation 等非 General 的 chunking 方法时,即使配置了 VLM 模型,解析过程仍不会调用 VLM,报错表现为“VLM 配置无效”。优先确认使用的 chunking 方法是否支持 VLM,当前仅 General 方法支持。

该报错通常出现在 vLLM 编译测试(例如 distributed-compile 的 CI 任务)中,当模型加载后可用 KV 缓存内存为负时触发。优先排查 GPU 显存是否不足,可尝试增大 --gpu-memory-utilization 参数(如 0.95),或升级 vLLM 到包含修复的版本。

此报错发生在 vLLM 启用 CPU KV offload 且使用滑动窗口注意力(Sliding Window Attention, SWA)时,由于调度器中 GPU 块边界计算错误,导致合法未对齐的滑动窗口负载被误判为超过限制,引发进程 abort。优先排查 offloading schedule

该报错通常出现在 LangChain 中向 create_agent 或结构化输出传递自定义 JSON schema 时,schema 缺少顶层 title 键。优先在 schema 中添加 title (如 "title": "MySchema" ),或改用 Pydantic 模型。