feat: implement central package management and stabilize mobile build
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using Pgvector;
|
||||
|
||||
namespace NexusReader.Domain.Entities;
|
||||
|
||||
@@ -27,5 +28,8 @@ public class SemanticKnowledgeCache
|
||||
[MaxLength(128)]
|
||||
public string TenantId { get; set; } = string.Empty;
|
||||
|
||||
// Vector embedding for semantic search (768 dimensions)
|
||||
public Vector? Embedding { get; set; }
|
||||
|
||||
public DateTime CreatedAt { get; set; } = DateTime.UtcNow;
|
||||
}
|
||||
|
||||
@@ -7,8 +7,9 @@
|
||||
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.Extensions.Identity.Stores" Version="10.0.7" />
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Pgvector" />
|
||||
<PackageReference Include="Microsoft.Extensions.Identity.Stores" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
||||
Reference in New Issue
Block a user