diff --git a/SqlDatabaseVectorSearch/Services/ChatService.cs b/SqlDatabaseVectorSearch/Services/ChatService.cs index 7e47070..cbadcc4 100644 --- a/SqlDatabaseVectorSearch/Services/ChatService.cs +++ b/SqlDatabaseVectorSearch/Services/ChatService.cs @@ -50,7 +50,7 @@ public class ChatService(IMemoryCache cache, IChatCompletionService chatCompleti """); - // TODO: Ensure that the chunks are not too long, according to the model max token. + // TODO: Ensure that chunks are not too long, according to the model max token. foreach (var result in chunks.Select(c => c.Content)) { prompt.AppendLine(result);