-
-
Notifications
You must be signed in to change notification settings - Fork 135
Expand file tree
/
Copy pathLangChain.Samples.Serve.csproj
More file actions
23 lines (19 loc) · 896 Bytes
/
LangChain.Samples.Serve.csproj
File metadata and controls
23 lines (19 loc) · 896 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="LangChain.Providers.Ollama" Version="0.17.0" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="8.1.4" />
<PackageReference Include="Swashbuckle.AspNetCore.Swagger" Version="9.0.3" />
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerGen" Version="9.0.3" />
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerUI" Version="9.0.3" />
<PackageReference Include="System.Text.Json" Version="9.0.8" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Core\src\LangChain.Core.csproj" />
<ProjectReference Include="..\..\src\Serve\src\LangChain.Serve.csproj" />
</ItemGroup>
</Project>