Files
FastDeploy/fastdeploy/entrypoints/cli/__init__.py
Zhang Yulong 5532e8a323 [FD CLI] Add bench cli (#4160)
* add bench cli

* Update test_main.py
2025-09-22 20:37:30 +08:00

8 lines
260 B
Python

from fastdeploy.entrypoints.cli.benchmark.latency import BenchmarkLatencySubcommand
from fastdeploy.entrypoints.cli.benchmark.serve import BenchmarkServingSubcommand
__all__: list[str] = [
"BenchmarkLatencySubcommand",
"BenchmarkServingSubcommand",
]