Skip to content

Commit a11c3d7

Browse files
committed
Formatting
1 parent 24f975d commit a11c3d7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

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

59-
final var config = new OrchestrationModuleConfig().withLlmConfig(GPT_4O.withParam(TEMPERATURE, 0.5));
59+
final var config =
60+
new OrchestrationModuleConfig().withLlmConfig(GPT_4O.withParam(TEMPERATURE, 0.5));
6061
final var prompt = new OrchestrationPrompt(Message.system(msgSystem), Message.user(msgUser));
6162
final var result = client.chatCompletion(prompt, config);
6263
return result.getContent();

0 commit comments

Comments
 (0)