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 8ca8feb commit 3b77120Copy full SHA for 3b77120
sample-code/spring-app/src/test/java/com/sap/ai/sdk/app/controllers/OrchestrationTest.java
@@ -68,6 +68,7 @@ void testTemplate() {
68
.isEqualTo("Reply with 'Orchestration Service is working!' in German");
69
assertThat(result.getAllMessages().get(0).role()).isEqualTo("user");
70
var llm = (LLMModuleResultSynchronous) response.getModuleResults().getLlm();
71
+ assertThat(llm.getId()).isEmpty();
72
assertThat(llm.getObject()).isEqualTo("chat.completion");
73
assertThat(llm.getCreated()).isGreaterThan(1);
74
assertThat(llm.getModel()).isEqualTo(modelName);
0 commit comments