feat: implement central package management and stabilize mobile build

This commit is contained in:
2026-05-21 19:38:58 +02:00
parent cb4b7d0052
commit b2ea7300c8
19 changed files with 227 additions and 92 deletions
@@ -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;
}