Skip to content

Commit 15fd7f5

Browse files
committed
Add default scenarios
1 parent 0ecf7b1 commit 15fd7f5

File tree

3 files changed

+29
-0
lines changed

3 files changed

+29
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,9 @@ cython_debug/
179179
*.json
180180
*.yaml
181181

182+
# But not scenarios
183+
!src/guidellm/benchmark/scenarios/*.json
184+
!src/guidellm/benchmark/scenarios/*.yaml
182185

183186
# UI Section - Next.js/React application under src/ui/
184187
# dependencies
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"rate_type": "sweep",
3+
"data": {
4+
"prompt_tokens": 512,
5+
"prompt_tokens_stdev": 128,
6+
"prompt_tokens_min": 1,
7+
"prompt_tokens_max": 1024,
8+
"output_tokens": 256,
9+
"output_tokens_stdev": 64,
10+
"output_tokens_min": 1,
11+
"output_tokens_max": 1024
12+
}
13+
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"rate_type": "sweep",
3+
"data": {
4+
"prompt_tokens": 4096,
5+
"prompt_tokens_stdev": 512,
6+
"prompt_tokens_min": 2048,
7+
"prompt_tokens_max": 6144,
8+
"output_tokens": 512,
9+
"output_tokens_stdev": 128,
10+
"output_tokens_min": 1,
11+
"output_tokens_max": 1024
12+
}
13+
}

0 commit comments

Comments
 (0)