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 7499393 commit 8c13bd2Copy full SHA for 8c13bd2
sample-code/spring-app/src/main/java/com/sap/ai/sdk/app/controllers/OrchestrationController.java
@@ -58,7 +58,10 @@ public CompletionPostResponse completion() {
58
@GetMapping("/template")
59
@Nonnull
60
public CompletionPostResponse template() {
61
- final var template = ChatMessage.create().role("user").content("Reply with 'Orchestration Service is working!' in {{?language}}");
+ final var template =
62
+ ChatMessage.create()
63
+ .role("user")
64
+ .content("Reply with 'Orchestration Service is working!' in {{?language}}");
65
final var templatingConfig = TemplatingModuleConfig.create().template(template);
66
final var configWithTemplate = config.withTemplateConfig(templatingConfig);
67
0 commit comments