Skip to content

Commit 2ae8e57

Browse files
author
I750911
committed
update of orchestration controller JavaDocs to "LLM" instead of "OpenAI"
1 parent 36d0e3f commit 2ae8e57

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class OrchestrationController {
3333
new ObjectMapper().setVisibility(PropertyAccessor.FIELD, Visibility.ANY);
3434

3535
/**
36-
* Chat request to OpenAI through the Orchestration service with a simple prompt.
36+
* Chat request to an LLM through the Orchestration service with a simple prompt.
3737
*
3838
* @return a ResponseEntity with the response content
3939
*/
@@ -52,7 +52,7 @@ ResponseEntity<String> completion(
5252
}
5353

5454
/**
55-
* Asynchronous stream of an OpenAI chat request
55+
* Asynchronous stream of an LLM chat request
5656
*
5757
* @return the emitter that streams the assistant message response
5858
*/
@@ -81,7 +81,7 @@ ResponseEntity<ResponseBodyEmitter> streamChatCompletion() {
8181
}
8282

8383
/**
84-
* Chat request to OpenAI through the Orchestration service with a template.
84+
* Chat request to an LLM through the Orchestration service with a template.
8585
*
8686
* @link <a href="https://help.sap.com/docs/sap-ai-core/sap-ai-core-service-guide/templating">SAP
8787
* AI Core: Orchestration - Templating</a>
@@ -102,7 +102,7 @@ ResponseEntity<Object> template(
102102
}
103103

104104
/**
105-
* Chat request to OpenAI through the Orchestration service using message history.
105+
* Chat request to an LLM through the Orchestration service using message history.
106106
*
107107
* @return a ResponseEntity with the response content
108108
*/
@@ -172,7 +172,7 @@ ResponseEntity<String> maskingAnonymization(
172172
}
173173

174174
/**
175-
* Chat request to OpenAI through the Orchestration deployment under a specific resource group.
175+
* Chat request to an LLM through the Orchestration deployment under a specific resource group.
176176
*
177177
* @return a ResponseEntity with the response content
178178
*/

0 commit comments

Comments
 (0)