Share via


OllamaChatClient Constructors

Definition

Overloads

OllamaChatClient(String, String, HttpClient)

Initializes a new instance of the OllamaChatClient class.

OllamaChatClient(Uri, String, HttpClient)

Initializes a new instance of the OllamaChatClient class.

OllamaChatClient(String, String, HttpClient)

Initializes a new instance of the OllamaChatClient class.

public OllamaChatClient (string endpoint, string? modelId = default, System.Net.Http.HttpClient? httpClient = default);
new Microsoft.Extensions.AI.OllamaChatClient : string * string * System.Net.Http.HttpClient -> Microsoft.Extensions.AI.OllamaChatClient
Public Sub New (endpoint As String, Optional modelId As String = Nothing, Optional httpClient As HttpClient = Nothing)

Parameters

endpoint
String

The endpoint URI where Ollama is hosted.

modelId
String

The id of the model to use. This may also be overridden per request via ModelId. Either this parameter or ModelId must provide a valid model id.

httpClient
HttpClient

An HttpClient instance to use for HTTP operations.

Applies to

OllamaChatClient(Uri, String, HttpClient)

Initializes a new instance of the OllamaChatClient class.

public OllamaChatClient (Uri endpoint, string? modelId = default, System.Net.Http.HttpClient? httpClient = default);
new Microsoft.Extensions.AI.OllamaChatClient : Uri * string * System.Net.Http.HttpClient -> Microsoft.Extensions.AI.OllamaChatClient
Public Sub New (endpoint As Uri, Optional modelId As String = Nothing, Optional httpClient As HttpClient = Nothing)

Parameters

endpoint
Uri

The endpoint URI where Ollama is hosted.

modelId
String

The id of the model to use. This may also be overridden per request via ModelId. Either this parameter or ModelId must provide a valid model id.

httpClient
HttpClient

An HttpClient instance to use for HTTP operations.

Applies to