catalog.ts 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. import type { CatalogCluster } from './types';
  2. export const agentCatalog: CatalogCluster[] = [
  3. {
  4. id: 'outpatient',
  5. label: '门诊服务',
  6. stages: [
  7. {
  8. id: 'before',
  9. label: '诊前',
  10. agents: [
  11. { id: 'outpatient-guide', title: '智能导诊', description: '院内服务与就医流程引导' },
  12. { id: 'outpatient-triage', title: '智能分诊', description: '根据症状推荐合适科室' },
  13. {
  14. id: 'smart-registration',
  15. title: '智能分诊挂号',
  16. description: '语音补槽、Mock 号源与预约确认',
  17. mode: 'registration',
  18. },
  19. { id: 'outpatient-checkin', title: '门诊签到叫号', description: '到院签到与候诊进度提醒' },
  20. ],
  21. },
  22. {
  23. id: 'during',
  24. label: '诊中',
  25. agents: [
  26. {
  27. id: 'tcm-tongue-assessment',
  28. title: '中医舌诊',
  29. description: '体质问答、舌象采集与综合建议',
  30. mode: 'tongue',
  31. },
  32. { id: 'outpatient-cds', title: '临床决策支持', description: '为诊疗过程提供知识辅助' },
  33. { id: 'outpatient-exam-booking', title: '检验检查预约', description: '检查项目预约与注意事项' },
  34. {
  35. id: 'report-interpretation',
  36. title: '检验检查报告解读',
  37. description: '上传报告、结构化解读与风险提醒',
  38. mode: 'report',
  39. },
  40. { id: 'outpatient-payment', title: '门诊缴费', description: '门诊费用查询与缴费引导' },
  41. { id: 'outpatient-record-writing', title: '病历书写', description: '病历信息整理与结构化生成' },
  42. { id: 'outpatient-record-quality', title: '病历质控', description: '门诊病历完整性与规范检查' },
  43. { id: 'outpatient-self-service', title: '自助门诊场景', description: '常见门诊服务自助办理' },
  44. ],
  45. },
  46. {
  47. id: 'after',
  48. label: '诊后',
  49. agents: [
  50. { id: 'outpatient-followup', title: '智能随访', description: '诊后情况采集与随访提醒' },
  51. { id: 'outpatient-rehab', title: '康复计划生成', description: '个体化康复任务与计划' },
  52. { id: 'outpatient-medication', title: '智能用药提醒', description: '按医嘱提供用药时间提醒' },
  53. ],
  54. },
  55. ],
  56. },
  57. {
  58. id: 'inpatient',
  59. label: '住院服务',
  60. stages: [
  61. {
  62. id: 'admission',
  63. label: '入院前',
  64. agents: [
  65. { id: 'pre-admission-assessment', title: '智能预住院评估', description: '入院前资料与风险信息采集' },
  66. { id: 'admission-booking', title: '智能预约与入院办理', description: '预约床位与入院流程引导' },
  67. { id: 'inpatient-deposit', title: '住院费预交', description: '预交金查询与缴纳引导' },
  68. ],
  69. },
  70. {
  71. id: 'ward',
  72. label: '住院中',
  73. agents: [
  74. { id: 'ward-education', title: '入院宣教 / 入科接待', description: '入科须知和病区服务介绍' },
  75. { id: 'inpatient-records', title: '智慧病历管理', description: '住院病历信息整理与管理' },
  76. { id: 'inpatient-cds', title: '临床决策支持', description: '住院诊疗知识辅助' },
  77. { id: 'inpatient-report', title: '检验检查报告解读', description: '住院报告结构化解读' },
  78. { id: 'ward-iot', title: 'AI 病区物联网', description: '病区设备与状态智能协同' },
  79. { id: 'smart-nursing', title: '智慧护理', description: '护理任务与患者服务协同' },
  80. { id: 'discharge-planning', title: '智能出院准备与规划', description: '出院条件与后续事项准备' },
  81. ],
  82. },
  83. {
  84. id: 'discharge',
  85. label: '出院后',
  86. agents: [
  87. { id: 'bedside-payment', title: '床旁结算', description: '出院费用与床旁结算引导' },
  88. { id: 'remote-management', title: '远程管理', description: '出院后健康状态远程管理' },
  89. { id: 'inpatient-followup', title: '智能随访', description: '出院后恢复情况随访' },
  90. { id: 'inpatient-rehab', title: '康复计划生成', description: '院外康复任务规划' },
  91. { id: 'inpatient-medication', title: '智能用药提醒', description: '出院用药提醒与反馈' },
  92. ],
  93. },
  94. ],
  95. },
  96. {
  97. id: 'checkup',
  98. label: '体检服务',
  99. stages: [
  100. {
  101. id: 'checkup-before',
  102. label: '检前',
  103. agents: [
  104. { id: 'checkup-questionnaire', title: '调查问卷', description: '体检前健康信息采集' },
  105. { id: 'checkup-plan', title: '方案设计', description: '个体化体检方案建议' },
  106. { id: 'checkup-booking', title: '预约体检', description: '体检时间与套餐预约' },
  107. { id: 'checkup-education', title: '检前宣教', description: '体检准备事项提醒' },
  108. ],
  109. },
  110. {
  111. id: 'checkup-during',
  112. label: '检中',
  113. agents: [
  114. { id: 'checkup-checkin', title: '智能签到', description: '到院签到与身份确认' },
  115. { id: 'checkup-guide', title: '智能导检', description: '检查顺序与位置引导' },
  116. { id: 'fasting-priority', title: '空腹项目优先', description: '智能安排空腹检查项目' },
  117. { id: 'department-check', title: '科室检查', description: '检查科室流程协同' },
  118. { id: 'sample-collection', title: '标本采集', description: '采集项目与注意事项提示' },
  119. { id: 'nutrition-breakfast', title: '营养早餐', description: '空腹项目结束后的营养服务' },
  120. ],
  121. },
  122. {
  123. id: 'checkup-after',
  124. label: '检后',
  125. agents: [
  126. { id: 'checkup-review', title: '智能辅助总检审核', description: '体检结论辅助审核' },
  127. { id: 'checkup-report', title: '报告生成', description: '体检结果汇总与报告生成' },
  128. { id: 'checkup-interpretation', title: '报告解读', description: '体检报告健康解读' },
  129. { id: 'green-channel', title: '绿色通道', description: '异常结果进一步就医协助' },
  130. { id: 'checkup-record', title: '档案建立', description: '院内体检健康记录归档' },
  131. { id: 'checkup-followup', title: '定期随访', description: '体检后定期健康随访' },
  132. ],
  133. },
  134. ],
  135. },
  136. {
  137. id: 'bi',
  138. label: '运营管理',
  139. stages: [
  140. {
  141. id: 'bi-all',
  142. label: '全部',
  143. agents: [
  144. { id: 'bi-global', title: '全局运营数据问答', description: '医院运营指标查询与解释' },
  145. { id: 'bi-forecast', title: '运营预测', description: '运营趋势与资源需求预测' },
  146. { id: 'bi-finance', title: '财务管控', description: '财务指标分析与风险提示' },
  147. { id: 'bi-material', title: '物资管理', description: '库存、消耗和补给管理' },
  148. { id: 'bi-quality', title: '质量管理', description: '医疗质量指标监测' },
  149. { id: 'bi-hr', title: '人力绩效', description: '人员与绩效数据分析' },
  150. { id: 'bi-device', title: '设备运维', description: '设备状态与运维任务管理' },
  151. ],
  152. },
  153. ],
  154. },
  155. ];