[V1][Metrics] Support vllm:cache_config_info (#13299)

This commit is contained in:
Mark McLoughlin
2025-02-22 08:20:00 +00:00
committed by GitHub
parent fca20841c2
commit 1cd981da4f
5 changed files with 32 additions and 12 deletions

View File

@@ -88,6 +88,12 @@ class SupportsHash(Protocol):
...
class SupportsMetricsInfo(Protocol):
def metrics_info(self) -> Dict[str, str]:
...
class ModelImpl(str, enum.Enum):
AUTO = "auto"
VLLM = "vllm"