- Add Notification entity, SignalR hub and NotificationDispatcher - Add Obsidian document endpoints and document extractors - Add RagRetrievalService with chunking/retrieval config - Add ProcessKnowledgeBase and UpdateKnowledgeBase endpoints - Add EF migrations for RAG enhancements, chunking modes and notification center - Add unit/integration tests project
23 lines
988 B
XML
23 lines
988 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
<IsPackable>false</IsPackable>
|
|
<IsTestProject>true</IsTestProject>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="*" />
|
|
<PackageReference Include="xunit" Version="*" />
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="*" />
|
|
<PackageReference Include="FluentAssertions" Version="*" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="*" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\RAG.Domain\RAG.Domain.csproj" />
|
|
<ProjectReference Include="..\..\src\RAG.Infrastructure\RAG.Infrastructure.csproj" />
|
|
<ProjectReference Include="..\..\src\RAG.Application\RAG.Application.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|