From 1264b7f502a27611860723fc8debe6820dd1e4d8 Mon Sep 17 00:00:00 2001 From: Marco Minerva Date: Fri, 2 Aug 2024 12:24:34 +0200 Subject: [PATCH] Correct a typo --- SqlDatabaseVectorSearch/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SqlDatabaseVectorSearch/Program.cs b/SqlDatabaseVectorSearch/Program.cs index 5fa8b0d..77be2b3 100644 --- a/SqlDatabaseVectorSearch/Program.cs +++ b/SqlDatabaseVectorSearch/Program.cs @@ -24,7 +24,7 @@ builder.Services.AddSqlServer(builder.Configuration.GetCon builder.Services.AddMemoryCache(); -// Semantical Kernel is used to generate embeddings and to reformulate questions taking into account all the previous interactions, +// Semantic Kernel is used to generate embeddings and to reformulate questions taking into account all the previous interactions, // so that embeddings themselves can be generated more accurately. builder.Services.AddKernel() .AddAzureOpenAITextEmbeddingGeneration(aiSettings.Embedding.Deployment, aiSettings.Embedding.Endpoint, aiSettings.Embedding.ApiKey)