AzureOpenAIDeployment Constructors
Class Constructors 1 member
Represents an Azure OpenAI Deployment.
Constructor(string, string, string, string?, int?) Section titled Constructor(string, string, string, string?, int?) Represents an Azure OpenAI Deployment.
public class AzureOpenAIDeployment{ public AzureOpenAIDeployment( string name, string modelName, string modelVersion, string? skuName = null, int? skuCapacity = null) { // ... }}Parameters
name string The name of the deployment modelName string The name of the model. modelVersion string The version of the model. skuName string? optional The name of the SKU. skuCapacity int? optional The capacity of the SKU.