From 7ef5d8afd4d8e701dc134be455e7bfbb9918495c Mon Sep 17 00:00:00 2001 From: Yuan Luo Date: Fri, 24 Oct 2025 17:09:45 +0800 Subject: [PATCH] Revise POINTSV15Chat model (#12049) Co-authored-by: luoyuan.luo --- python/sglang/srt/multimodal/processors/points_v15_chat.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/sglang/srt/multimodal/processors/points_v15_chat.py b/python/sglang/srt/multimodal/processors/points_v15_chat.py index c5c674bda..7acc1eee9 100644 --- a/python/sglang/srt/multimodal/processors/points_v15_chat.py +++ b/python/sglang/srt/multimodal/processors/points_v15_chat.py @@ -7,12 +7,12 @@ from PIL import Image from sglang.srt.models.points_v15_chat import POINTSV15ChatModel from sglang.srt.multimodal.processors.qwen_vl import ( - Qwen2_5VLImageProcessor, + QwenVLImageProcessor, resize_image_async, ) -class POINTSV15ChatProcessor(Qwen2_5VLImageProcessor): +class POINTSV15ChatProcessor(QwenVLImageProcessor): models = [POINTSV15ChatModel] def __init__(self, hf_config, server_args, _processor, *args, **kwargs):