mirror of
https://github.com/marcominerva/SqlDatabaseVectorSearch.git
synced 2026-06-20 12:23:10 +00:00
29b8ebe283
- Changed ChatService registration in Program.cs to singleton. - Reformatted ChatHistory initialization in ChatService.cs. - Modified prompt construction to avoid new lines after chunks. - Updated Microsoft.SemanticKernel package to version 1.27.0.
23 lines
938 B
XML
23 lines
938 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<NoWarn>$(NoWarn);SKEXP0001;SKEXP0010;SKEXP0050;</NoWarn>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Dapper" Version="2.1.35" />
|
|
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="8.0.10" />
|
|
<PackageReference Include="Microsoft.Data.SqlClient" Version="5.2.2" />
|
|
<PackageReference Include="Microsoft.SemanticKernel" Version="1.27.0" />
|
|
<PackageReference Include="MinimalHelpers.OpenApi" Version="2.0.17" />
|
|
<PackageReference Include="PdfPig" Version="0.1.9" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.9.0" />
|
|
<PackageReference Include="TinyHelpers" Version="3.1.18" />
|
|
<PackageReference Include="TinyHelpers.AspNetCore" Version="3.1.19" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|