Schéma d’entrée (aperçu fourni par le serveur — ne pas copier)
{
"type": "object",
"required": [
"age"
],
"properties": {
"age": {
"type": "integer",
"description": "年龄(必填)"
},
"needs": {
"type": "array",
"items": {
"type": "string"
},
"description": "需求列表,如[\"重疾保障\",\"医疗报销\",\"意外防护\"]"
},
"budget": {
"type": "number",
"description": "年预算(元)"
},
"gender": {
"enum": [
"男",
"女"
],
"type": "string"
},
"family_role": {
"enum": [
"本人",
"配偶",
"孩子",
"父母"
],
"type": "string",
"description": "被保人角色"
},
"occupation_class": {
"type": "integer",
"description": "职业类别(1-6类)"
},
"existing_coverage": {
"type": "array",
"items": {
"type": "string"
},
"description": "已有保障,如[\"百万医疗\",\"意外险\"]"
},
"health_conditions": {
"type": "array",
"items": {
"type": "string"
},
"description": "既往症,如[\"高血压2级\",\"甲状腺结节\"]"
},
"include_reasoning": {
"type": "boolean",
"description": "是否生成LLM推荐理由(默认false,Agent调用无需开启;设true适用于直接面向人类展示)"
},
"has_social_security": {
"type": "boolean",
"description": "是否有社保"
}
}
}