xiatian 3 月之前
父节点
当前提交
ee50cfa0f2
共有 1 个文件被更改,包括 10 次插入0 次删除
  1. 10 0
      src/main/java/cn/com/qmth/am/bean/ds/ChatReq.java

+ 10 - 0
src/main/java/cn/com/qmth/am/bean/ds/ChatReq.java

@@ -4,6 +4,8 @@ public class ChatReq {
 
     private String model;
 
+    private Boolean stream = false;
+
     public ChatReq(String modelType) {
         super();
         this.model = modelType;
@@ -17,4 +19,12 @@ public class ChatReq {
         this.model = model;
     }
 
+    public Boolean getStream() {
+        return stream;
+    }
+
+    public void setStream(Boolean stream) {
+        this.stream = stream;
+    }
+
 }