Class OpenAIClientSettings
- Namespace
- OpenAI
- Assembly
- OpenAI-DotNet.dll
The client settings for configuring Azure OpenAI or custom domain.
public sealed class OpenAIClientSettings
- Inheritance
-
OpenAIClientSettings
- Inherited Members
Constructors
OpenAIClientSettings()
Creates a new instance of OpenAIClientSettings for use with OpenAI.
public OpenAIClientSettings()
OpenAIClientSettings(string, string)
Creates a new instance of OpenAIClientSettings for use with OpenAI.
public OpenAIClientSettings(string domain, string apiVersion = "v1")
Parameters
OpenAIClientSettings(string, string, string, bool)
Creates a new instance of the OpenAIClientSettings for use with Azure OpenAI.
https://learn.microsoft.com/en-us/azure/cognitive-services/openai/
public OpenAIClientSettings(string resourceName, string deploymentId, string apiVersion = "2023-05-01", bool useActiveDirectoryAuthentication = false)
Parameters
resourceName
stringThe name of your Azure OpenAI Resource.
deploymentId
stringThe name of your model deployment. You're required to first deploy a model before you can make calls.
apiVersion
stringOptional, defaults to 2022-12-01
useActiveDirectoryAuthentication
boolOptional, set to true if you want to use Azure Active Directory for Authentication.
Properties
ApiVersion
public string ApiVersion { get; }
Property Value
BaseRequest
public string BaseRequest { get; }
Property Value
Default
public static OpenAIClientSettings Default { get; }
Property Value
DeploymentId
public string DeploymentId { get; }
Property Value
IsAzureOpenAI
public bool IsAzureOpenAI { get; }
Property Value
ResourceName
public string ResourceName { get; }