5 references to OpenAIEmbeddingGenerator
Microsoft.Extensions.AI.OpenAI (1)
OpenAIClientExtensions.cs (1)
32new OpenAIEmbeddingGenerator(openAIClient, modelId, dimensions);
Microsoft.Extensions.AI.OpenAI.Tests (4)
OpenAIEmbeddingGeneratorTests.cs (4)
25Assert.Throws<ArgumentNullException>("openAIClient", () => new OpenAIEmbeddingGenerator(null!, "model")); 29Assert.Throws<ArgumentNullException>("modelId", () => new OpenAIEmbeddingGenerator(openAIClient, null!)); 30Assert.Throws<ArgumentException>("modelId", () => new OpenAIEmbeddingGenerator(openAIClient, "")); 31Assert.Throws<ArgumentException>("modelId", () => new OpenAIEmbeddingGenerator(openAIClient, " "));