Skip to content

Commit 2d6ceff

Browse files
russellbMu Huai
authored andcommitted
benchmarks: simplify test jsonschema (vllm-project#14567)
Signed-off-by: Russell Bryant <rbryant@redhat.com> Signed-off-by: Mu Huai <tianbowen.tbw@antgroup.com>
1 parent 15084b9 commit 2d6ceff

File tree

1 file changed

+10
-16
lines changed

1 file changed

+10
-16
lines changed
Lines changed: 10 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,19 @@
11
{
2-
"type": "array",
3-
"items": {
42
"type": "object",
53
"properties": {
64
"name": { "type": "string" },
7-
"race": { "type": "string" },
8-
"class": { "type": "string" },
9-
"level": { "type": "integer" },
10-
"background": { "type": "string" },
11-
"alignment": { "type": "string" },
12-
"backstory": { "type": "string" }
5+
"email": { "type": "string" },
6+
"street": { "type": "string" },
7+
"city": { "type": "string" },
8+
"state": { "type": "string" },
9+
"zip": { "type": "string" },
10+
"phone": { "type": "string" },
11+
"website": { "type": "string" },
12+
"company": { "type": "string" },
13+
"age": { "type": "integer" }
1314
},
1415
"required": [
1516
"name",
16-
"race",
17-
"class",
18-
"level",
19-
"background",
20-
"alignment",
21-
"backstory"
17+
"email"
2218
]
23-
}
2419
}
25-

0 commit comments

Comments
 (0)