Skip to content

Commit 452eb65

Browse files
committed
remove renaming changes from benchmark package til after that PR is up to avoid conflicts
Signed-off-by: Mark Kurtz <[email protected]>
1 parent a88605e commit 452eb65

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

src/guidellm/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import click
77
from pydantic import ValidationError
88

9-
from guidellm.backends import BackendType
9+
from guidellm.backend import BackendType
1010
from guidellm.benchmark import (
1111
ProfileType,
1212
reimport_benchmarks_report,

src/guidellm/benchmark/aggregator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
from pydantic import Field
1414

15-
from guidellm.backends import ResponseSummary
15+
from guidellm.backend import ResponseSummary
1616
from guidellm.benchmark.benchmark import (
1717
BenchmarkArgs,
1818
BenchmarkRunStats,

src/guidellm/benchmark/benchmarker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
from pydantic import Field
1515
from transformers import PreTrainedTokenizerBase # type: ignore # noqa: PGH003
1616

17-
from guidellm.backends import Backend, ResponseSummary
17+
from guidellm.backend import Backend, ResponseSummary
1818
from guidellm.benchmark.aggregator import (
1919
AggregatorT,
2020
BenchmarkT,

src/guidellm/benchmark/entrypoints.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
PreTrainedTokenizerBase,
88
)
99

10-
from guidellm.backends import Backend, BackendType
10+
from guidellm.backend import Backend, BackendType
1111
from guidellm.benchmark.benchmarker import GenerativeBenchmarker
1212
from guidellm.benchmark.output import (
1313
GenerativeBenchmarksConsole,

src/guidellm/benchmark/scenario.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
PreTrainedTokenizerBase,
1010
)
1111

12-
from guidellm.backends.backend import BackendType
12+
from guidellm.backend.backend import BackendType
1313
from guidellm.benchmark.profile import ProfileType
1414
from guidellm.objects.pydantic import StandardBaseModel
1515
from guidellm.scheduler.strategies import StrategyType

src/guidellm/scheduler/scheduler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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()

0 commit comments

Comments
 (0)