xiatian 3 сар өмнө
parent
commit
ee50cfa0f2

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

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