File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
orchestration/src/test/java/com/sap/ai/sdk/orchestration Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -139,8 +139,8 @@ void testGroundingConfig() {
139139
140140 GroundingModuleConfigConfig configConfig = config .getGroundingConfig ().getConfig ();
141141 assertThat (configConfig ).isNotNull ();
142- assertThat (configConfig .getInputParams ()).containsExactly ("groundingInput " );
143- assertThat (configConfig .getOutputParam ()).isEqualTo ("groundingOutput " );
142+ assertThat (configConfig .getInputParams ()).containsExactly ("userMessage " );
143+ assertThat (configConfig .getOutputParam ()).isEqualTo ("groundingContext " );
144144
145145 List <GroundingModuleConfigConfigFiltersInner > filters = configConfig .getFilters ();
146146 assertThat (filters ).hasSize (1 );
@@ -156,6 +156,6 @@ void testGroundingPrompt() {
156156 var message = prompt .getMessages ().get (0 );
157157 assertThat (message .content ())
158158 .isEqualTo (
159- "{{?groundingInput }} Use the following information as additional context: {{?groundingOutput }}" );
159+ "{{?userMessage }} Use the following information as additional context: {{?groundingContext }}" );
160160 }
161161}
You can’t perform that action at this time.
0 commit comments