Partager via


AzureOpenAIKernelBuilderExtensions.AddAzureOpenAIChatCompletion Method

Definition

Overloads

AddAzureOpenAIChatCompletion(IKernelBuilder, String, AzureOpenAIClient, String, String)

Adds the AzureOpenAIChatCompletionService to the Services.

AddAzureOpenAIChatCompletion(IKernelBuilder, String, String, TokenCredential, String, String, HttpClient)

Adds the AzureOpenAIChatCompletionService to the Services.

AddAzureOpenAIChatCompletion(IKernelBuilder, String, String, String, String, String, HttpClient)

Adds the AzureOpenAIChatCompletionService to the Services.

AddAzureOpenAIChatCompletion(IKernelBuilder, String, AzureOpenAIClient, String, String)

public static Microsoft.SemanticKernel.IKernelBuilder AddAzureOpenAIChatCompletion (this Microsoft.SemanticKernel.IKernelBuilder builder, string deploymentName, Azure.AI.OpenAI.AzureOpenAIClient? azureOpenAIClient = default, string? serviceId = default, string? modelId = default);
static member AddAzureOpenAIChatCompletion : Microsoft.SemanticKernel.IKernelBuilder * string * Azure.AI.OpenAI.AzureOpenAIClient * string * string -> Microsoft.SemanticKernel.IKernelBuilder
<Extension()>
Public Function AddAzureOpenAIChatCompletion (builder As IKernelBuilder, deploymentName As String, Optional azureOpenAIClient As AzureOpenAIClient = Nothing, Optional serviceId As String = Nothing, Optional modelId As String = Nothing) As IKernelBuilder

Parameters

builder
IKernelBuilder

The IKernelBuilder instance to augment.

azureOpenAIClient
AzureOpenAIClient

AzureOpenAIClient to use for the service. If null, one must be available in the service provider when this service is resolved.

serviceId
String

A local identifier for the given AI service

Returns

The same instance as builder.

Applies to

AddAzureOpenAIChatCompletion(IKernelBuilder, String, String, TokenCredential, String, String, HttpClient)

public static Microsoft.SemanticKernel.IKernelBuilder AddAzureOpenAIChatCompletion (this Microsoft.SemanticKernel.IKernelBuilder builder, string deploymentName, string endpoint, Azure.Core.TokenCredential credentials, string? serviceId = default, string? modelId = default, System.Net.Http.HttpClient? httpClient = default);
static member AddAzureOpenAIChatCompletion : Microsoft.SemanticKernel.IKernelBuilder * string * string * Azure.Core.TokenCredential * string * string * System.Net.Http.HttpClient -> Microsoft.SemanticKernel.IKernelBuilder
<Extension()>
Public Function AddAzureOpenAIChatCompletion (builder As IKernelBuilder, deploymentName As String, endpoint As String, credentials As TokenCredential, Optional serviceId As String = Nothing, Optional modelId As String = Nothing, Optional httpClient As HttpClient = Nothing) As IKernelBuilder

Parameters

builder
IKernelBuilder

The IKernelBuilder instance to augment.

credentials
TokenCredential

Token credentials, e.g. DefaultAzureCredential, ManagedIdentityCredential, EnvironmentCredential, etc.

serviceId
String

A local identifier for the given AI service

httpClient
HttpClient

The HttpClient to use with this service.

Returns

The same instance as builder.

Applies to

AddAzureOpenAIChatCompletion(IKernelBuilder, String, String, String, String, String, HttpClient)

public static Microsoft.SemanticKernel.IKernelBuilder AddAzureOpenAIChatCompletion (this Microsoft.SemanticKernel.IKernelBuilder builder, string deploymentName, string endpoint, string apiKey, string? serviceId = default, string? modelId = default, System.Net.Http.HttpClient? httpClient = default);
static member AddAzureOpenAIChatCompletion : Microsoft.SemanticKernel.IKernelBuilder * string * string * string * string * string * System.Net.Http.HttpClient -> Microsoft.SemanticKernel.IKernelBuilder
<Extension()>
Public Function AddAzureOpenAIChatCompletion (builder As IKernelBuilder, deploymentName As String, endpoint As String, apiKey As String, Optional serviceId As String = Nothing, Optional modelId As String = Nothing, Optional httpClient As HttpClient = Nothing) As IKernelBuilder

Parameters

builder
IKernelBuilder

The IKernelBuilder instance to augment.

serviceId
String

A local identifier for the given AI service

httpClient
HttpClient

The HttpClient to use with this service.

Returns

The same instance as builder.

Applies to