You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main/java/org/devlive/sdk/openai/entity/CompletionEntity.java
+12Lines changed: 12 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -50,6 +50,13 @@ public class CompletionEntity
50
50
@JsonProperty(value = "stop")
51
51
privateList<String> stop;
52
52
53
+
/**
54
+
* Whether to stream back partial progress. If set, tokens will be sent as data-only server-sent events as they become available, with the stream terminated by a data: [DONE] message.
0 commit comments