{ "$defs": { "LLMState": { "properties": { "cancelGeneration": { "asStream": true }, "error": true, "pending": { "type": "boolean" }, "result": { "type": "string" } }, "required": [ "cancelGeneration", "error", "pending" ], "type": "object" } }, "properties": { "state": { "$ref": "#/$defs/LLMState", "asOpaque": true } }, "required": [ "state" ], "type": "object" }