Skip to content

Commit f86aadd

Browse files
committed
Revert
1 parent 838b4ee commit f86aadd

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

sample-code/spring-app/src/main/java/com/sap/ai/sdk/app/services/OrchestrationService.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,7 @@ public class OrchestrationService {
5757
public String queryPayments(final @Nonnull String msgUser) {
5858
final var msgSystem = "You are a helpful chat bot to answer questions on company payments.";
5959

60-
final var config =
61-
new OrchestrationModuleConfig().withLlmConfig(GPT_4O.withParam(MAX_TOKENS, 150));
60+
final var config = new OrchestrationModuleConfig().withLlmConfig(GPT_4O.withParam(MAX_TOKENS, 150));
6261
final var prompt = new OrchestrationPrompt(Message.system(msgSystem), Message.user(msgUser));
6362
final var result = client.chatCompletion(prompt, config);
6463
return result.getContent();

0 commit comments

Comments
 (0)