Update Swagger config and package versions

- Removed AddFormFile method from Swagger config in Program.cs
- Updated package versions in SqlDatabaseVectorSearch.csproj:
  - Microsoft.SemanticKernel to 1.16.2
  - MinimalHelpers.OpenApi to 2.0.11
  - Swashbuckle.AspNetCore to 6.7.0
  - TinyHelpers to 3.1.11
  - TinyHelpers.AspNetCore to 3.1.8
- Removed old package references from SqlDatabaseVectorSearch.csproj
This commit is contained in:
Marco Minerva
2024-08-01 15:41:42 +02:00
parent e59941cb0f
commit e54a091106
2 changed files with 5 additions and 6 deletions
-1
View File
@@ -39,7 +39,6 @@ builder.Services.AddSwaggerGen(options =>
options.SwaggerDoc("v1", new OpenApiInfo { Title = "SQL Database Vector Search API", Version = "v1" });
options.AddDefaultResponse();
options.AddFormFile();
});
builder.Services.AddDefaultProblemDetails();