Skip to content

Commit 1af3a45

Browse files
committed
Fixes to ensure tests will run
1 parent 2faf7c9 commit 1af3a45

23 files changed

+99
-56
lines changed

src/guidellm/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
hf_logging.set_verbosity_error()
2121
logging.getLogger("transformers").setLevel(logging.ERROR)
2222

23-
from .config import (
23+
from .settings import (
2424
DatasetSettings,
2525
Environment,
2626
LoggingSettings,

src/guidellm/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
)
1414
from guidellm.benchmark.entrypoints import benchmark_with_scenario
1515
from guidellm.benchmark.scenario import GenerativeTextScenario, get_builtin_scenarios
16-
from guidellm.config import print_config
16+
from guidellm.settings import print_config
1717
from guidellm.preprocess.dataset import ShortPromptStrategy, process_dataset
1818
from guidellm.scheduler import StrategyType
1919
from guidellm.utils import DefaultGroupHandler

src/guidellm/backend/backend.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from PIL import Image
88

99
from guidellm.backend.response import ResponseSummary, StreamingTextResponse
10-
from guidellm.config import settings
10+
from guidellm.settings import settings
1111

1212
__all__ = [
1313
"Backend",

src/guidellm/backend/openai.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
ResponseSummary,
1717
StreamingTextResponse,
1818
)
19-
from guidellm.config import settings
19+
from guidellm.settings import settings
2020

2121
__all__ = [
2222
"CHAT_COMPLETIONS",

src/guidellm/backend/response.py

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

33
from pydantic import computed_field
44

5-
from guidellm.config import settings
5+
from guidellm.settings import settings
66
from guidellm.utils import StandardBaseModel
77

88
__all__ = [

src/guidellm/benchmark/aggregator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
GenerativeTextErrorStats,
2222
GenerativeTextResponseStats,
2323
)
24-
from guidellm.config import settings
24+
from guidellm.settings import settings
2525
from guidellm.request import (
2626
GenerationRequest,
2727
GenerativeRequestLoaderDescription,

src/guidellm/benchmark/output.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
SweepProfile,
2121
ThroughputProfile,
2222
)
23-
from guidellm.config import settings
23+
from guidellm.settings import settings
2424
from guidellm.presentation import UIDataBuilder
2525
from guidellm.presentation.injector import create_report
2626
from guidellm.scheduler import strategy_display_str

src/guidellm/benchmark/profile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import numpy as np
55
from pydantic import Field, computed_field
66

7-
from guidellm.config import settings
7+
from guidellm.settings import settings
88
from guidellm.scheduler import (
99
AsyncConstantStrategy,
1010
AsyncPoissonStrategy,

src/guidellm/logger.py

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

4242
from loguru import logger
4343

44-
from guidellm.config import LoggingSettings, settings
44+
from guidellm.settings import LoggingSettings, settings
4545

4646
__all__ = ["configure_logger", "logger"]
4747

src/guidellm/presentation/injector.py

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

55
from loguru import logger
66

7-
from guidellm.config import settings
7+
from guidellm.settings import settings
88
from guidellm.utils.text import load_text
99

1010

0 commit comments

Comments
 (0)