Skip to content

Commit

Permalink
Add missing parameter.
Browse files Browse the repository at this point in the history
  • Loading branch information
Claudia Beatriz Murialdo Garrone committed Sep 11, 2024
1 parent 77fdde6 commit 3b4a929
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dotnet/test/DotNetCoreUnitTest/Domain/GxEmbeddingTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public class GxEmbeddingTest
public async Task EmbeddingTest()
{
EmbeddingService embeddingService = EmbeddingService.Instance;
var embedding = await embeddingService.GenerateEmbeddingAsync("openai/text-embedding-3-small", "Hello World");
var embedding = await embeddingService.GenerateEmbeddingAsync("openai/text-embedding-3-small", 512, "Hello World");
Assert.NotNull(embedding);
}
}
Expand Down

0 comments on commit 3b4a929

Please sign in to comment.