File tree Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 66import click
77from pydantic import ValidationError
88
9- from guidellm .backends import BackendType
9+ from guidellm .backend import BackendType
1010from guidellm .benchmark import (
1111 ProfileType ,
1212 reimport_benchmarks_report ,
Original file line number Diff line number Diff line change 1212
1313from pydantic import Field
1414
15- from guidellm .backends import ResponseSummary
15+ from guidellm .backend import ResponseSummary
1616from guidellm .benchmark .benchmark import (
1717 BenchmarkArgs ,
1818 BenchmarkRunStats ,
Original file line number Diff line number Diff line change 1414from pydantic import Field
1515from transformers import PreTrainedTokenizerBase # type: ignore # noqa: PGH003
1616
17- from guidellm .backends import Backend , ResponseSummary
17+ from guidellm .backend import Backend , ResponseSummary
1818from guidellm .benchmark .aggregator import (
1919 AggregatorT ,
2020 BenchmarkT ,
Original file line number Diff line number Diff line change 77 PreTrainedTokenizerBase ,
88)
99
10- from guidellm .backends import Backend , BackendType
10+ from guidellm .backend import Backend , BackendType
1111from guidellm .benchmark .benchmarker import GenerativeBenchmarker
1212from guidellm .benchmark .output import (
1313 GenerativeBenchmarksConsole ,
Original file line number Diff line number Diff line change 99 PreTrainedTokenizerBase ,
1010)
1111
12- from guidellm .backends .backend import BackendType
12+ from guidellm .backend .backend import BackendType
1313from guidellm .benchmark .profile import ProfileType
1414from guidellm .objects .pydantic import StandardBaseModel
1515from guidellm .scheduler .strategies import StrategyType
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ class Scheduler(
5050 Example:
5151 ::
5252 from guidellm.scheduler import Scheduler
53- from guidellm.backend import OpenAIBackend
53+ from guidellm.backends import OpenAIBackend
5454 from guidellm.scheduler import NonDistributedEnvironment, SynchronousStrategy
5555
5656 scheduler = Scheduler()
You can’t perform that action at this time.
0 commit comments