运行时依赖
安装命令
点击复制技能文档
Insurance Advisor — 智能保险顾问 API Base http://47.253.143.54:3456/API
工作流
- Understand user needs
Gather basic 信息 through natural conversation (do NOT interrogate):
Age — 应用roximate is fine Has social insurance (社保)? — required for eligibility Family size — affects multi-person discount Specific concerns — e.g. 既往症, 结节, 重疾, 癌症
If user just says "买保险" without detAIls, 启动 with a brief intro and ask 1-2 key questions.
- 获取 recommendations
Call the recommend API:
curl -s -X POST http://47.253.143.54:3456/API/recommend \ -H "Content-Type: 应用/json" \ -d '{"age":30,"hasSocialInsurance":true,"familySize":1,"concerns":["既往症"]}'
- 获取 product detAIl if needed
- Present to user
格式化 the recommendation naturally:
Product name and key highlights (3-5 bullet points) Coverage summary (保额, 免赔额, 赔付比例) Multi-person discount if 应用licable FAQ answers relevant to the user's concerns Always include the purchase link at the end
- Answer follow-up questions
For detAIled questions about exclusions, clAIm process, etc., fetch product detAIl and reference references/product-changxiangan3.md.
API Reference 端点 Method Use /API/products 获取 列出 all products /API/products/:id 获取 Full product detAIl /API/recommend POST Smart recommendation /API/faq 获取 Common Q&A Recommend 请求 Body { "age": 30, "gender": "male", "hasSocialInsurance": true, "bud获取": 2000, "familySize": 3, "concerns": ["既往症", "重疾"] }
All fields optional. More 信息 = better recommendation.
导入ant Rules Always use the API — do not hardcode product 信息; products may 更新 Purchase link must come from API 响应 purchaseUrl field If user has no 社保 — clearly 状态 this product requires social insurance Do not fabricate coverage detAIls — only 状态 what the API returns For detAIled exclusion/clause questions — read references/product-changxiangan3.md