Skip to content

Commit 8c13bd2

Browse files
committed
Formatting
1 parent 7499393 commit 8c13bd2

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

sample-code/spring-app/src/main/java/com/sap/ai/sdk/app/controllers/OrchestrationController.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,10 @@ public CompletionPostResponse completion() {
5858
@GetMapping("/template")
5959
@Nonnull
6060
public CompletionPostResponse template() {
61-
final var template = ChatMessage.create().role("user").content("Reply with 'Orchestration Service is working!' in {{?language}}");
61+
final var template =
62+
ChatMessage.create()
63+
.role("user")
64+
.content("Reply with 'Orchestration Service is working!' in {{?language}}");
6265
final var templatingConfig = TemplatingModuleConfig.create().template(template);
6366
final var configWithTemplate = config.withTemplateConfig(templatingConfig);
6467

0 commit comments

Comments
 (0)