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 6
6
import click
7
7
from pydantic import ValidationError
8
8
9
- from guidellm .backends import BackendType
9
+ from guidellm .backend import BackendType
10
10
from guidellm .benchmark import (
11
11
ProfileType ,
12
12
reimport_benchmarks_report ,
Original file line number Diff line number Diff line change 12
12
13
13
from pydantic import Field
14
14
15
- from guidellm .backends import ResponseSummary
15
+ from guidellm .backend import ResponseSummary
16
16
from guidellm .benchmark .benchmark import (
17
17
BenchmarkArgs ,
18
18
BenchmarkRunStats ,
Original file line number Diff line number Diff line change 14
14
from pydantic import Field
15
15
from transformers import PreTrainedTokenizerBase # type: ignore # noqa: PGH003
16
16
17
- from guidellm .backends import Backend , ResponseSummary
17
+ from guidellm .backend import Backend , ResponseSummary
18
18
from guidellm .benchmark .aggregator import (
19
19
AggregatorT ,
20
20
BenchmarkT ,
Original file line number Diff line number Diff line change 7
7
PreTrainedTokenizerBase ,
8
8
)
9
9
10
- from guidellm .backends import Backend , BackendType
10
+ from guidellm .backend import Backend , BackendType
11
11
from guidellm .benchmark .benchmarker import GenerativeBenchmarker
12
12
from guidellm .benchmark .output import (
13
13
GenerativeBenchmarksConsole ,
Original file line number Diff line number Diff line change 9
9
PreTrainedTokenizerBase ,
10
10
)
11
11
12
- from guidellm .backends .backend import BackendType
12
+ from guidellm .backend .backend import BackendType
13
13
from guidellm .benchmark .profile import ProfileType
14
14
from guidellm .objects .pydantic import StandardBaseModel
15
15
from guidellm .scheduler .strategies import StrategyType
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ class Scheduler(
50
50
Example:
51
51
::
52
52
from guidellm.scheduler import Scheduler
53
- from guidellm.backend import OpenAIBackend
53
+ from guidellm.backends import OpenAIBackend
54
54
from guidellm.scheduler import NonDistributedEnvironment, SynchronousStrategy
55
55
56
56
scheduler = Scheduler()
You can’t perform that action at this time.
0 commit comments