Files
FastDeploy/fastdeploy/entrypoints/cli/__init__.py
qwes5s5 6fd3e72da1 [FastDeploy Cli] Bench Command eval and throughput (#4239)
* bench command

* bench command

* bench command

* bench command

* bench command

---------

Co-authored-by: K11OntheBoat <your_email@example.com>
2025-10-10 16:17:44 +08:00

14 lines
505 B
Python

from fastdeploy.entrypoints.cli.benchmark.eval import BenchmarkEvalSubcommand
from fastdeploy.entrypoints.cli.benchmark.latency import BenchmarkLatencySubcommand
from fastdeploy.entrypoints.cli.benchmark.serve import BenchmarkServingSubcommand
from fastdeploy.entrypoints.cli.benchmark.throughput import (
BenchmarkThroughputSubcommand,
)
__all__: list[str] = [
"BenchmarkLatencySubcommand",
"BenchmarkServingSubcommand",
"BenchmarkThroughputSubcommand",
"BenchmarkEvalSubcommand",
]