feat: implement AI-driven knowledge extraction service with semantic caching and persistent storage

This commit is contained in:
2026-04-26 08:51:46 +02:00
parent 59074a05a0
commit d8e6931289
13 changed files with 423 additions and 3 deletions
+1 -1
View File
@@ -26,7 +26,7 @@ builder.Services.AddScoped<IFocusModeService, FocusModeService>();
builder.Services.AddScoped<IReaderNavigationService, ReaderNavigationService>();
builder.Services.AddApplication();
builder.Services.AddInfrastructure();
builder.Services.AddInfrastructure(builder.Configuration);
var app = builder.Build();
+10 -1
View File
@@ -5,5 +5,14 @@
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*"
"AllowedHosts": "*",
"ConnectionStrings": {
"SqliteConnection": "Data Source=nexus.db"
},
"Ai": {
"Google": {
"ApiKey": "PLACEHOLDER",
"Model": "gemini-1.5-flash"
}
}
}