|
@@ -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;
|
|
|
+ }
|
|
|
+
|
|
|
}
|