3.inquiry-user-answer.ts 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. import { AgentTaskStep } from 'src/agent/agent.task';
  2. import { getUserInput } from 'src/agent/agent.input';
  3. import { ModalController } from '@ionic/angular/standalone';
  4. import { FmodeChatCompletion } from 'fmode-ng';
  5. import { extactAndParseJsonFromString } from 'src/agent/agent.json';
  6. export function TaskInqueryUserAnswer(options:{
  7. modalCtrl:ModalController
  8. shareData:any}
  9. ):AgentTaskStep{
  10. /**
  11. shareData.userStory // 已经拥有的医生主动询问
  12. {
  13. "questionList": [
  14. {
  15. "title": "头痛的性质",
  16. "desc": "请问您的偏头痛是怎样的感觉?是刺痛、跳动还是压迫感?"
  17. },
  18. ]
  19. }
  20. */
  21. let task1 = new AgentTaskStep({title:"诊断:患者回答具体内容后,医生给出诊断结果",shareData:options.shareData})
  22. task1.handle = ()=>{
  23. return new Promise(async (resolve,reject)=>{
  24. // 获取用户输入的问题清单
  25. let questionList = options.shareData.userStory.questionList.map((item:any)=>{return {name:item.title,desc:item.desc,type:"text"}})
  26. let userInputResult = await getUserInput(options.modalCtrl,{fieldsArray:questionList});
  27. console.log(userInputResult)
  28. questionList.forEach((question:any)=>{
  29. question.answer = userInputResult[question.name]
  30. })
  31. // 文本生成
  32. let qaContent = options.shareData.userStory.questionList.map((item:any)=>`医生问:${item.title},${item.desc}\n患者答:${item.answer||"没回答"}`).join("\n")
  33. let PromptTemplate = `您是一名专业的${options.shareData.userStory.keshi}主任医生,根据具体的询问,给出初步诊断。
  34. 症状口述:${options.shareData.userStory['症状口述']}
  35. 具体询问:${qaContent}
  36. 结果以JSON格式表示:
  37. 症状名称为具体的症状,症状描述为用户的感受,持续时间若没有直接说,可以写近期即可。
  38. {
  39. "title":"病例标题",
  40. "desc":"病情概括",
  41. "content":"给出完整的治疗方案和建议"
  42. }
  43. `
  44. let completion = new FmodeChatCompletion([
  45. {role:"system",content:""},
  46. {role:"user",content:PromptTemplate}
  47. ])
  48. completion.sendCompletion().subscribe((message:any)=>{
  49. if(task1.progress < 0.5){
  50. task1.progress += 0.1
  51. }
  52. if(task1.progress >= 0.5 && task1.progress <= 0.9){
  53. task1.progress += 0.01
  54. }
  55. if(task1.progress >= 0.9){
  56. task1.progress += 0.001
  57. }
  58. // 打印消息体
  59. console.log(message.content)
  60. // 赋值消息内容给组件内属性
  61. if(message.complete){ // 判断message为完成状态,则设置isComplete为完成
  62. options.shareData.diagResult = extactAndParseJsonFromString(message.content)
  63. task1.progress = 1
  64. resolve(true)
  65. }
  66. })
  67. })
  68. }
  69. return task1
  70. }
  71. const TestShareData = {
  72. userStory : {
  73. "keshi": "神经内科",
  74. "sympList": [
  75. {
  76. "title": "偏头疼",
  77. "desc": "已经持续了2天了",
  78. "duration": "2天"
  79. },
  80. {
  81. "title": "发冷",
  82. "desc": "感觉已经有一天",
  83. "duration": "1天"
  84. }
  85. ],
  86. "症状口述": "偏头疼已经持续了2天了,发冷感觉已经有一天。",
  87. "questionList": [
  88. {
  89. "title": "头痛的性质",
  90. "desc": "请描述您的头痛是搏动性、压迫性还是其他类型?",
  91. "answer":"压迫性头疼"
  92. },
  93. {
  94. "title": "头痛的部位",
  95. "desc": "您的头痛主要集中在头部的哪个区域?",
  96. "answer":"左侧头疼"
  97. },
  98. {
  99. "title": "伴随症状",
  100. "desc": "除了头痛和发冷,您还有其他的症状吗?例如恶心、呕吐、视力模糊或对光敏感等?",
  101. "answer":"有点恶心但是没有呕吐"
  102. },
  103. {
  104. "title": "发冷的性质",
  105. "desc": "您感到发冷时是否伴随有发热、出汗或其他症状?",
  106. "answer":"没有"
  107. },
  108. {
  109. "title": "既往病史",
  110. "desc": "您是否有偏头痛或其他头痛的病史?",
  111. "answer":"没有"
  112. },
  113. {
  114. "title": "生活习惯",
  115. "desc": "您最近的生活习惯是否有变化?例如睡眠不足、压力增大或饮食不规律?",
  116. "answer":"经常熬夜,学习压力大"
  117. },
  118. {
  119. "title": "药物使用",
  120. "desc": "您是否有服用任何药物来缓解头痛或其他症状?",
  121. "answer":"没有"
  122. },
  123. {
  124. "title": "家族病史",
  125. "desc": "您的家族中是否有人有类似的头痛或神经系统疾病史?",
  126. "answer":"没有"
  127. },
  128. {
  129. "title": "过敏史",
  130. "desc": "您是否有药物或其他物质的过敏史?",
  131. "answer":"没有"
  132. }
  133. ]
  134. }
  135. }