-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathGenAiLab.Web.csproj
More file actions
27 lines (23 loc) · 1.26 KB
/
GenAiLab.Web.csproj
File metadata and controls
27 lines (23 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UserSecretsId>233010f4-eff2-4b12-922a-edeabb53bbdc</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Azure.AI.OpenAI" Version="2.3.0-beta.2" />
<PackageReference Include="Aspire.Azure.AI.OpenAI" Version="9.5.0-preview.1.25474.7" />
<PackageReference Include="Microsoft.Extensions.AI.OpenAI" Version="9.9.1-preview.1.25474.6" />
<PackageReference Include="Microsoft.Extensions.AI" Version="10.3.0" />
<PackageReference Include="Microsoft.SemanticKernel.Core" Version="1.71.0" />
<PackageReference Include="PdfPig" Version="0.1.11" />
<PackageReference Include="Aspire.Qdrant.Client" Version="13.1.0" />
<PackageReference Include="Microsoft.SemanticKernel.Connectors.Qdrant" Version="1.61.0-preview" />
<PackageReference Include="Microsoft.AspNetCore.Components.QuickGrid" Version="9.0.12" />
<PackageReference Include="Microsoft.Extensions.VectorData.Abstractions" Version="9.7.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\GenAiLab.ServiceDefaults\GenAiLab.ServiceDefaults.csproj" />
</ItemGroup>
</Project>