OpenAIEmbeddingGenerator Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
OpenAIEmbeddingGenerator(EmbeddingClient, Nullable<Int32>) |
Initializes a new instance of the OpenAIEmbeddingGenerator class. |
OpenAIEmbeddingGenerator(OpenAIClient, String, Nullable<Int32>) |
Initializes a new instance of the OpenAIEmbeddingGenerator class. |
OpenAIEmbeddingGenerator(EmbeddingClient, Nullable<Int32>)
Initializes a new instance of the OpenAIEmbeddingGenerator class.
public OpenAIEmbeddingGenerator (OpenAI.Embeddings.EmbeddingClient embeddingClient, int? dimensions = default);
new Microsoft.Extensions.AI.OpenAIEmbeddingGenerator : OpenAI.Embeddings.EmbeddingClient * Nullable<int> -> Microsoft.Extensions.AI.OpenAIEmbeddingGenerator
Public Sub New (embeddingClient As EmbeddingClient, Optional dimensions As Nullable(Of Integer) = Nothing)
Parameters
- embeddingClient
- EmbeddingClient
The underlying client.
Applies to
OpenAIEmbeddingGenerator(OpenAIClient, String, Nullable<Int32>)
Initializes a new instance of the OpenAIEmbeddingGenerator class.
public OpenAIEmbeddingGenerator (OpenAI.OpenAIClient openAIClient, string modelId, int? dimensions = default);
new Microsoft.Extensions.AI.OpenAIEmbeddingGenerator : OpenAI.OpenAIClient * string * Nullable<int> -> Microsoft.Extensions.AI.OpenAIEmbeddingGenerator
Public Sub New (openAIClient As OpenAIClient, modelId As String, Optional dimensions As Nullable(Of Integer) = Nothing)
Parameters
- openAIClient
- OpenAIClient
The underlying client.
- modelId
- String
The model to use.
Applies to
Colaborar con nosotros en GitHub
El origen de este contenido se puede encontrar en GitHub, donde también puede crear y revisar problemas y solicitudes de incorporación de cambios. Para más información, consulte nuestra guía para colaboradores.