From b628c8996e9c18ae9becc2bf9b75ee3395f9815e Mon Sep 17 00:00:00 2001 From: Marco Minerva Date: Fri, 2 Aug 2024 15:33:51 +0200 Subject: [PATCH] Fix a typo in the documentation --- SqlDatabaseVectorSearch/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SqlDatabaseVectorSearch/Program.cs b/SqlDatabaseVectorSearch/Program.cs index 00b3dd7..202d018 100644 --- a/SqlDatabaseVectorSearch/Program.cs +++ b/SqlDatabaseVectorSearch/Program.cs @@ -121,7 +121,7 @@ documentsApiGroup.MapPost(string.Empty, async (IFormFile file, VectorSearchServi operation.Summary = "Uploads a document"; operation.Description = "Uploads a document to SQL Database and saves its embedding using Vector Support. The document will be indexed and used to answer questions. Currently, only PDF files are supported."; - operation.Parameter("documentId").Description = "The unique identifier of the document. If not provided, a new one will be generated. If you specify an existing documentId, the document will be overridden."; + operation.Parameter("documentId").Description = "The unique identifier of the document. If not provided, a new one will be generated. If you specify an existing documentId, the corresponding document will be overwritten."; return operation; });