From 415ed027fadb730694855f987f34501481e8431d Mon Sep 17 00:00:00 2001 From: Shanshan Shen <467638484@qq.com> Date: Wed, 16 Apr 2025 09:30:33 +0800 Subject: [PATCH] [V1][Platform] Remove `supports_structured_output()` in platform (#531) ### What this PR does / why we need it? Remove `supports_structured_output()` in platform. This method is no need, because upstream has deleted this. Signed-off-by: shen-shanshan <467638484@qq.com> --- vllm_ascend/platform.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/vllm_ascend/platform.py b/vllm_ascend/platform.py index c434e19..7519961 100644 --- a/vllm_ascend/platform.py +++ b/vllm_ascend/platform.py @@ -162,7 +162,3 @@ class NPUPlatform(Platform): model configuration. """ return True - - @classmethod - def supports_structured_output(cls) -> bool: - return True