cainiao-hue 3 months ago
parent
commit
8f1aff61ef
1 changed files with 2 additions and 2 deletions
  1. 2 2
      soul-app/src/app/report-modal/report-modal.component.ts

+ 2 - 2
soul-app/src/app/report-modal/report-modal.component.ts

@@ -58,7 +58,7 @@ export class ReportModalComponent  implements OnInit {
   analyzeUserFeeling(content: string): { score: number; label: string } {
     const moodScores = {
       positive: {
-        words: ['开心', '高兴', '喜欢', '快乐', '棒', '兴奋', '满足', '美好','喜悦'],
+        words: ['开心', '高兴', '喜欢', '快乐', '棒', '兴奋', '满足', '美好'],
         score: 1
       },
       neutral: {
@@ -107,5 +107,5 @@ export class ReportModalComponent  implements OnInit {
             }
         });
     });
-  } 
+} 
 }