We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f6a7b3 commit f5f376fCopy full SHA for f5f376f
orchestration/src/main/java/com/sap/ai/sdk/orchestration/OrchestrationStreamConfig.java
@@ -47,7 +47,7 @@ GlobalStreamOptions createGlobalStreamOptions() {
47
if (chunkSize == null && delimiters == null) {
48
return null;
49
}
50
- val opts = GlobalStreamOptions.create().enabled(true);
+ val opts = GlobalStreamOptions.create();
51
Optional.ofNullable(chunkSize).ifPresent(opts::setChunkSize);
52
opts.setDelimiters(delimiters == null ? null : List.copyOf(delimiters));
53
return opts;
0 commit comments