Skip to content

Commit 36d0e3f

Browse files
author
I750911
committed
update of orchestration endpoint description to "LLM" instead of "OpenAI"
1 parent 80597c5 commit 36d0e3f

File tree

1 file changed

+5
-5
lines changed
  • sample-code/spring-app/src/main/resources/static

1 file changed

+5
-5
lines changed

sample-code/spring-app/src/main/resources/static/index.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ <h2>Orchestration</h2>
254254
<a class="link-offset-2-hover link-underline link-underline-opacity-0 link-underline-opacity-75-hover endpoint"
255255
href="/orchestration/completion"><code>/orchestration/completion</code></a>
256256
<div class="tooltip-content">
257-
Chat request to OpenAI through the Orchestration service with a simple prompt.
257+
Chat request to an LLM through the Orchestration service with a simple prompt.
258258
</div>
259259
</div>
260260
</li>
@@ -263,7 +263,7 @@ <h2>Orchestration</h2>
263263
<a class="link-offset-2-hover link-underline link-underline-opacity-0 link-underline-opacity-75-hover endpoint"
264264
href="/orchestration/streamChatCompletion"><code>/orchestration/streamChatCompletion</code></a>
265265
<div class="tooltip-content">
266-
Chat request to OpenAI through the Orchestration service with a simple prompt.
266+
Asynchronous stream of an LLM chat request.
267267
</div>
268268
</div>
269269
</li>
@@ -272,7 +272,7 @@ <h2>Orchestration</h2>
272272
<a class="link-offset-2-hover link-underline link-underline-opacity-0 link-underline-opacity-75-hover endpoint"
273273
href="/orchestration/template"><code>/orchestration/template</code></a>
274274
<div class="tooltip-content">
275-
Chat request to OpenAI through the Orchestration service with a template.
275+
Chat request to an LLM through the Orchestration service with a template.
276276
</div>
277277
</div>
278278
</li>
@@ -281,7 +281,7 @@ <h2>Orchestration</h2>
281281
<a class="link-offset-2-hover link-underline link-underline-opacity-0 link-underline-opacity-75-hover endpoint"
282282
href="/orchestration/messagesHistory"><code>/orchestration/messageHistory</code></a>
283283
<div class="tooltip-content">
284-
Chat request to OpenAI through the Orchestration service using message history.
284+
Chat request to an LLM through the Orchestration service using message history.
285285
</div>
286286
</div>
287287
</li>
@@ -508,7 +508,7 @@ <h5>OpenAI</h5>
508508
const headers = {
509509
'accept': 'text/html'
510510
};
511-
response = await fetch(endpoint, { headers });
511+
response = await fetch(endpoint, {headers});
512512
}
513513

514514
if (!response.ok) throw new Error("Error occurred!");

0 commit comments

Comments
 (0)