{ "model": "local-struct", "messages": [ { "role": "system", "content": "Return only JSON that matches the requested schema." }, { "role": "user", "content": "Create one fictional deployment status for an edge inference service. Use a short service name and a numeric priority from 1 to 5." } ], "max_tokens": 80, "temperature": 0, "response_format": { "type": "json_schema", "json_schema": { "name": "deployment_status", "strict": true, "schema": { "type": "object", "properties": { "service": { "type": "string", "minLength": 3 }, "status": { "type": "string", "enum": [ "ready", "blocked" ] }, "priority": { "type": "integer", "minimum": 1, "maximum": 5 } }, "required": [ "service", "status", "priority" ], "additionalProperties": false } } }, "chat_template_kwargs": { "enable_thinking": false } }