|
|
@@ -1,13 +1,14 @@
|
|
|
package com.fs.fastGpt.domain;
|
|
|
|
|
|
+import com.alibaba.fastjson.JSONArray;
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
import lombok.Data;
|
|
|
|
|
|
@Data
|
|
|
public class FastGptChatConversation {
|
|
|
private JSONObject userInfo;
|
|
|
- private JSONObject aiInfo;
|
|
|
- private JSONObject history;
|
|
|
+ private String aiInfo;
|
|
|
+ private JSONArray history;
|
|
|
private String isRepository;
|
|
|
private String userContent;
|
|
|
private String aiContent;
|