tests : add unified cache server tests

This commit is contained in:
Georgi Gerganov
2025-10-23 16:24:57 +03:00
parent e7cec955f0
commit 7863fcc21d
2 changed files with 34 additions and 0 deletions

View File

@@ -78,6 +78,7 @@ class ServerProcess:
server_embeddings: bool | None = False
server_reranking: bool | None = False
server_metrics: bool | None = False
kv_unified: bool | None = False
server_slots: bool | None = False
pooling: str | None = None
draft: int | None = None
@@ -159,6 +160,8 @@ class ServerProcess:
server_args.append("--reranking")
if self.server_metrics:
server_args.append("--metrics")
if self.kv_unified:
server_args.append("--kv-unified")
if self.server_slots:
server_args.append("--slots")
else: