Files
vllm/benchmarks/structured_schemas/structured_schema_1.json

26 lines
499 B
JSON
Raw Normal View History

{
"type": "array",
"items": {
"type": "object",
"properties": {
"name": { "type": "string" },
"race": { "type": "string" },
"class": { "type": "string" },
"level": { "type": "integer" },
"background": { "type": "string" },
"alignment": { "type": "string" },
"backstory": { "type": "string" }
},
"required": [
"name",
"race",
"class",
"level",
"background",
"alignment",
"backstory"
]
}
}