From 6f43a9b9f43267b4531c11cc018c2892cedcd6ee Mon Sep 17 00:00:00 2001 From: yych0745 <93746447+yych0745@users.noreply.github.com> Date: Wed, 12 Mar 2025 17:47:27 +0800 Subject: [PATCH] =?UTF-8?q?remove=20the=20unused=20readline=20dependency?= =?UTF-8?q?=20from=20the=20Qwen2=20model=20implementa=E2=80=A6=20(#4340)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- python/sglang/srt/models/qwen2.py | 1 - 1 file changed, 1 deletion(-) diff --git a/python/sglang/srt/models/qwen2.py b/python/sglang/srt/models/qwen2.py index 2100845e0..6e38ec6ca 100644 --- a/python/sglang/srt/models/qwen2.py +++ b/python/sglang/srt/models/qwen2.py @@ -15,7 +15,6 @@ # Adapted from llama2.py # Modify details for the adaptation of Qwen2 model. """Inference-only Qwen2 model compatible with HuggingFace weights.""" -from readline import add_history from typing import Any, Dict, Iterable, Optional, Tuple import torch