Skip to content

Commit f5f376f

Browse files
committed
Disable default stream
1 parent 3f6a7b3 commit f5f376f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

orchestration/src/main/java/com/sap/ai/sdk/orchestration/OrchestrationStreamConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ GlobalStreamOptions createGlobalStreamOptions() {
4747
if (chunkSize == null && delimiters == null) {
4848
return null;
4949
}
50-
val opts = GlobalStreamOptions.create().enabled(true);
50+
val opts = GlobalStreamOptions.create();
5151
Optional.ofNullable(chunkSize).ifPresent(opts::setChunkSize);
5252
opts.setDelimiters(delimiters == null ? null : List.copyOf(delimiters));
5353
return opts;

0 commit comments

Comments
 (0)