Fix typo in ValueError message: use kv_role instead of kv_disagg_role (#27166)

Signed-off-by: Yongtao Huang <yongtaoh2022@gmail.com>
This commit is contained in:
Yongtao Huang
2025-10-20 03:47:19 +08:00
committed by GitHub
parent f6fdacd82c
commit 8a81d776ce

View File

@ -94,7 +94,7 @@ class KVTransferConfig:
if self.kv_connector is not None and self.kv_role is None:
raise ValueError(
"Please specify kv_disagg_role when kv_connector "
"Please specify kv_role when kv_connector "
f"is set, supported roles are {get_args(KVRole)}"
)