feat: implement AI-driven text streaming and dynamic knowledge graph generation in AiAssistantBubble

This commit is contained in:
2026-05-01 20:34:00 +02:00
parent 0cc25bb412
commit 0ed89ef5a4
3 changed files with 137 additions and 12 deletions
@@ -2,4 +2,6 @@ using NexusReader.Application.Abstractions.Messaging;
namespace NexusReader.Application.Queries.Graph;
public record GetKnowledgeGraphQuery : IQuery<GraphDataDto>;
/// <param name="Text">Chapter or page content to extract the graph from.</param>
public record GetKnowledgeGraphQuery(string Text) : IQuery<GraphDataDto>;