Răsfoiți Sursa

chore: auto bump version and changelog [skip ci]

iwt 1 lună în urmă
părinte
comite
b751ac0982

+ 25 - 0
cfc-backend/src/main/java/com/etotem/cfc/dto/EmotionRecognitionResult.java

@@ -0,0 +1,25 @@
+package com.etotem.cfc.dto;
+
+import lombok.Data;
+import java.util.List;
+
+/**
+ * 照片情绪识别结果
+ */
+@Data
+public class EmotionRecognitionResult {
+    /** 识别到的情绪列表,按置信度降序 */
+    private List<EmotionItem> emotions;
+    /** 综合心情天气(sunny/cloudy/rainy/stormy) */
+    private String moodWeather;
+    /** 原始响应(调试用) */
+    private String rawResponse;
+
+    @Data
+    public static class EmotionItem {
+        private String label;    // 情绪标签:开心/平静/难过/生气 等
+        private Double confidence; // 置信度 0-100
+        private String color;      // 前端展示色值
+        private String type;       // 英文类型:joy/sadness/anger/fear 等
+    }
+}

+ 1 - 1
cfc-web/.last_build_commit

@@ -1 +1 @@
-ec1f2eda837de0627ed0fcb6188a63a5e02c9435
+8cd80dad3bbc39c3f95e940799f87bcf1991764b

+ 2 - 2
cfc-web/package-lock.json

@@ -1,12 +1,12 @@
 {
   "name": "cfc-web",
-  "version": "1.0.1150",
+  "version": "1.0.1151",
   "lockfileVersion": 3,
   "requires": true,
   "packages": {
     "": {
       "name": "cfc-web",
-      "version": "1.0.1150",
+      "version": "1.0.1151",
       "dependencies": {
         "@wangeditor/editor": "^5.1.23",
         "@wangeditor/editor-for-vue": "^1.0.2",

+ 1 - 1
cfc-web/package.json

@@ -1,6 +1,6 @@
 {
   "name": "cfc-web",
-  "version": "1.0.1151",
+  "version": "1.0.1152",
   "private": true,
   "scripts": {
     "dev": "vue-cli-service serve",

+ 6 - 0
cfc-web/public/CHANGELOG-v1.0.md

@@ -4,6 +4,12 @@
 
 ---
 
+## v1.0.1152 (2026-08-19)
+
+### Bug 修复
+- 系统提示词INSERT列数不一致 + 知识库embedding TPM重试 + tags_str类型修复
+
+
 ## v1.0.1151 (2026-08-19)
 
 ### Bug 修复

+ 7 - 1
cfc-web/public/CHANGELOG.md

@@ -1,6 +1,6 @@
 # 更新日志
 
-> 当前版本: v1.0.1151
+> 当前版本: v1.0.1152
 
 ## 历史版本
 
@@ -8,6 +8,12 @@
 
 ---
 
+## v1.0.1152 (2026-08-19)
+
+### Bug 修复
+- 系统提示词INSERT列数不一致 + 知识库embedding TPM重试 + tags_str类型修复
+
+
 ## v1.0.1151 (2026-08-19)
 
 ### Bug 修复