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 3aa6ddc commit 7611504Copy full SHA for 7611504
orchestration/src/main/java/com/sap/ai/sdk/orchestration/OrchestrationModuleConfig.java
@@ -11,6 +11,7 @@
11
import lombok.NoArgsConstructor;
12
import lombok.Value;
13
import lombok.With;
14
+import lombok.experimental.Tolerate;
15
16
/**
17
* Represents the configuration for the orchestration service. Allows for configuring the different
@@ -56,6 +57,7 @@ public class OrchestrationModuleConfig {
56
57
* @param aiModel The LLM configuration to use.
58
* @return A new configuration with the given LLM configuration.
59
*/
60
+ @Tolerate
61
@Nonnull
62
public OrchestrationModuleConfig withLlmConfig(@Nonnull final OrchestrationAiModel aiModel) {
63
return withLlmConfig(aiModel.createConfig());
0 commit comments