Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -569,6 +569,7 @@ public Mono<Response<ChatCompletions>> getChatCompletionsWithResponse(String dep
* <p>
* <strong>Code Samples</strong>
* </p>
* <!-- @formatter:off -->
* <!-- src_embed
* com.azure.ai.openai.OpenAIAsyncClient.getChatCompletionsStream#String-ChatCompletionsOptionsMaxOverload -->
*
Expand All @@ -583,6 +584,7 @@ public Mono<Response<ChatCompletions>> getChatCompletionsWithResponse(String dep
*
* <!-- end com.azure.ai.openai.OpenAIAsyncClient.getChatCompletionsStream#String-ChatCompletionsOptionsMaxOverload
* -->
* <!-- @formatter:on -->
*
* @param deploymentOrModelName Specifies either the model deployment name (when using Azure OpenAI) or model name
* (when using non-Azure OpenAI) to use for this request.
Expand Down Expand Up @@ -701,6 +703,7 @@ public Mono<Completions> getCompletions(String deploymentOrModelName, String pro
* <p>
* <strong>Code Samples</strong>
* </p>
* <!-- @formatter:off -->
* <!-- src_embed com.azure.ai.openai.OpenAIAsyncClient.getChatCompletionsStream#String-ChatCompletionsOptions -->
* <pre>
* openAIAsyncClient
Expand All @@ -711,6 +714,7 @@ public Mono<Completions> getCompletions(String deploymentOrModelName, String pro
* &#40;&#41; -&gt; System.out.println&#40;&quot;Completed called getChatCompletionsStream.&quot;&#41;&#41;;
* </pre>
* <!-- end com.azure.ai.openai.OpenAIAsyncClient.getChatCompletionsStream#String-ChatCompletionsOptions -->
* <!-- @formatter:on -->
*
* @param deploymentOrModelName Specifies either the model deployment name (when using Azure OpenAI) or model name
* (when using non-Azure OpenAI) to use for this request.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -691,6 +691,7 @@ public ChatCompletions getChatCompletions(String deploymentOrModelName,
* <p>
* <strong>Code Samples</strong>
* </p>
* <!-- @formatter:off -->
* <!-- src_embed com.azure.ai.openai.OpenAIClient.getChatCompletionsStream#String-ChatCompletionsOptions -->
* <pre>
* openAIClient.getChatCompletionsStream&#40;deploymentOrModelId, new ChatCompletionsOptions&#40;chatMessages&#41;&#41;
Expand All @@ -709,6 +710,7 @@ public ChatCompletions getChatCompletions(String deploymentOrModelName,
* &#125;&#41;;
* </pre>
* <!-- end com.azure.ai.openai.OpenAIClient.getChatCompletionsStream#String-ChatCompletionsOptions -->
* <!-- @formatter:on -->
*
* @param deploymentOrModelName Specifies either the model deployment name (when using Azure OpenAI) or model name
* (when using non-Azure OpenAI) to use for this request.
Expand Down Expand Up @@ -741,6 +743,7 @@ public IterableStream<ChatCompletions> getChatCompletionsStream(String deploymen
* <p>
* <strong>Code Samples</strong>
* </p>
* <!-- @formatter:off -->
* <!-- src_embed com.azure.ai.openai.OpenAIClient.getChatCompletionsStream#String-ChatCompletionsOptionsMaxOverload
* -->
*
Expand All @@ -765,6 +768,7 @@ public IterableStream<ChatCompletions> getChatCompletionsStream(String deploymen
* </pre>
*
* <!-- end com.azure.ai.openai.OpenAIClient.getChatCompletionsStream#String-ChatCompletionsOptionsMaxOverload -->
* <!-- @formatter:on -->
*
* @param deploymentOrModelName Specifies either the model deployment name (when using Azure OpenAI) or model name
* (when using non-Azure OpenAI) to use for this request.
Expand Down
Loading