Fix a typo in the documentation

This commit is contained in:
Marco Minerva
2024-08-02 15:33:51 +02:00
parent 17eee5f775
commit b628c8996e
+1 -1
View File
@@ -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;
});