Share via


HuggingFaceKernelBuilderExtensions.AddHuggingFaceChatCompletion Method

Definition

Overloads

AddHuggingFaceChatCompletion(IKernelBuilder, Uri, String, String, HttpClient)

Adds an Hugging Face chat completion service with the specified configuration.

AddHuggingFaceChatCompletion(IKernelBuilder, String, Uri, String, String, HttpClient)

Adds an Hugging Face chat completion service with the specified configuration.

AddHuggingFaceChatCompletion(IKernelBuilder, Uri, String, String, HttpClient)

Adds an Hugging Face chat completion service with the specified configuration.

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

Parameters

builder
IKernelBuilder

The IKernelBuilder instance to augment.

endpoint
Uri

The endpoint URL for the chat completion service.

apiKey
String

The API key required for accessing the Hugging Face service.

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

AddHuggingFaceChatCompletion(IKernelBuilder, String, Uri, String, String, HttpClient)

Adds an Hugging Face chat completion service with the specified configuration.

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

Parameters

builder
IKernelBuilder

The IKernelBuilder instance to augment.

model
String

The name of the Hugging Face model.

endpoint
Uri

The endpoint URL for the chat completion service.

apiKey
String

The API key required for accessing the Hugging Face service.

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