Skip to content

Commit 48098fc

Browse files
committed
Fix for restructuring of output and general simplification based on feedback
1 parent 4cd904d commit 48098fc

File tree

20 files changed

+635
-680
lines changed

20 files changed

+635
-680
lines changed

.github/workflows/development.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ jobs:
1111
strategy:
1212
matrix:
1313
python:
14-
- "3.12"
15-
- "3.8"
14+
- "3.13"
15+
- "3.9"
1616
steps:
1717
- uses: actions/checkout@v4
1818
- name: Set up Python
@@ -29,8 +29,8 @@ jobs:
2929
strategy:
3030
matrix:
3131
python:
32-
- "3.12"
33-
- "3.8"
32+
- "3.13"
33+
- "3.9"
3434
steps:
3535
- uses: actions/checkout@v4
3636
- name: Set up Python

.github/workflows/nightly.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ jobs:
1010
strategy:
1111
matrix:
1212
python:
13+
- "3.13"
1314
- "3.12"
1415
- "3.11"
1516
- "3.10"
1617
- "3.9"
17-
- "3.8"
1818
steps:
1919
- uses: actions/checkout@v4
2020
- name: Set up Python
@@ -31,11 +31,11 @@ jobs:
3131
strategy:
3232
matrix:
3333
python:
34+
- "3.13"
3435
- "3.12"
3536
- "3.11"
3637
- "3.10"
3738
- "3.9"
38-
- "3.8"
3939
steps:
4040
- uses: actions/checkout@v4
4141
- name: Set up Python
@@ -52,11 +52,11 @@ jobs:
5252
strategy:
5353
matrix:
5454
python:
55+
- "3.13"
5556
- "3.12"
5657
- "3.11"
5758
- "3.10"
5859
- "3.9"
59-
- "3.8"
6060
steps:
6161
- uses: actions/checkout@v4
6262
- name: Set up Python

.github/workflows/quality.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ jobs:
1414
strategy:
1515
matrix:
1616
python:
17-
- "3.12"
18-
- "3.8"
17+
- "3.13"
18+
- "3.9"
1919
steps:
2020
- uses: actions/checkout@v4
2121
- name: Set up Python
@@ -32,8 +32,8 @@ jobs:
3232
strategy:
3333
matrix:
3434
python:
35-
- "3.12"
36-
- "3.8"
35+
- "3.13"
36+
- "3.9"
3737
steps:
3838
- uses: actions/checkout@v4
3939
- name: Set up Python
@@ -52,7 +52,7 @@ jobs:
5252
- name: Set up Python
5353
uses: actions/setup-python@v5
5454
with:
55-
python-version: "3.8"
55+
python-version: "3.9"
5656
- name: Install pre-commit
5757
run: pip install pre-commit
5858
- name: Run pre-commit checks

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ jobs:
1111
strategy:
1212
matrix:
1313
python:
14+
- "3.13"
1415
- "3.12"
1516
- "3.11"
1617
- "3.10"
1718
- "3.9"
18-
- "3.8"
1919
steps:
2020
- uses: actions/checkout@v4
2121
- name: Set up Python
@@ -32,11 +32,11 @@ jobs:
3232
strategy:
3333
matrix:
3434
python:
35+
- "3.13"
3536
- "3.12"
3637
- "3.11"
3738
- "3.10"
3839
- "3.9"
39-
- "3.8"
4040
steps:
4141
- uses: actions/checkout@v4
4242
- name: Set up Python
@@ -53,11 +53,11 @@ jobs:
5353
strategy:
5454
matrix:
5555
python:
56+
- "3.13"
5657
- "3.12"
5758
- "3.11"
5859
- "3.10"
5960
- "3.9"
60-
- "3.8"
6161
steps:
6262
- uses: actions/checkout@v4
6363
- name: Set up Python

src/guidellm/benchmark/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
from .aggregator import AGG, BenchmarkAggregator, GenerativeBenchmarkAggregator
2-
from .benchmark import BENCH, Benchmark, GenerativeBenchmark
1+
from .aggregator import AggregatorT, BenchmarkAggregator, GenerativeBenchmarkAggregator
2+
from .benchmark import Benchmark, BenchmarkT, GenerativeBenchmark
33
from .benchmarker import Benchmarker, BenchmarkerResult, GenerativeBenchmarker
44
from .entrypoints import benchmark_generative_text
55
from .profile import (
@@ -14,8 +14,8 @@
1414
)
1515

1616
__all__ = [
17-
"AGG",
18-
"BENCH",
17+
"AggregatorT",
18+
"BenchmarkT",
1919
"Benchmark",
2020
"BenchmarkAggregator",
2121
"GenerativeBenchmark",

0 commit comments

Comments
 (0)