修复剩余的"is not support"语法错误

Co-authored-by: Jiang-Jia-Jun <163579578+Jiang-Jia-Jun@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-12-23 12:14:19 +00:00
parent a79dfc108c
commit 92d8b84236
3 changed files with 4 additions and 4 deletions

View File

@@ -19,7 +19,7 @@ from fastdeploy.platforms import current_platform
from .base import Proposer
from .mtp import MTPProposer
# XPU is not support ngram proposer now
# XPU does not support ngram proposer now
if not current_platform.is_xpu():
from .ngram import NgramProposer
__all__ = ["Proposer", "MTPProposer", "NgramProposer"]