{ "model": "gpt-5-mini", "prompt_variables": [ "customer_name", "region", "detail_region_info" ], "output_format": { "format": { "type": "json_schema", "name": "report", "schema": { "type": "object", "properties": { "report": { "type": "object", "properties": { "summary": { "type": "string" }, "details": { "type": "array", "items": { "type": "object", "properties": { "detail_title": { "type": "string" }, "detail_description": { "type": "string" } }, "required": [ "detail_title", "detail_description" ], "additionalProperties": false } } }, "required": [ "summary", "details" ], "additionalProperties": false }, "selling_points": { "type": "array", "items": { "type": "object", "properties": { "category": { "type": "string" }, "keywords": { "type": "string" }, "description": { "type": "string" } }, "required": [ "category", "keywords", "description" ], "additionalProperties": false } }, "tags": { "type": "array", "items": { "type": "string" } }, "contents_advise": { "type": "string" } }, "required": [ "report", "selling_points", "tags", "contents_advise" ], "additionalProperties": false }, "strict": true } } }