Skip to content

Commit 1d88dac

Browse files
[V1][Platform] Add supports_structured_output() method to Platform (#475)
### What this PR does / why we need it? Add `supports_structured_output()` method to Platform, find more details at vllm-project/vllm#16148. Signed-off-by: shen-shanshan <467638484@qq.com>
1 parent adabdee commit 1d88dac

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

vllm_ascend/platform.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,3 +164,7 @@ def supports_v1(cls, model_config: ModelConfig) -> bool:
164164
model configuration.
165165
"""
166166
return True
167+
168+
@classmethod
169+
def supports_structured_output(cls) -> bool:
170+
return True

0 commit comments

Comments
 (0)