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
- OpenAI.Embeddings.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
- OpenAI.OpenAIClient
The underlying client.
- modelId
- String
The model to use.
Applies to
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET