9 lines
365 B
C#
9 lines
365 B
C#
using NexusReader.Application.Abstractions.Messaging;
|
|
|
|
namespace NexusReader.Application.Queries.Graph;
|
|
|
|
/// <param name="Text">Chapter or page content to extract the graph from.</param>
|
|
/// <param name="TenantId">Tenant scope for knowledge extraction and caching.</param>
|
|
public record GetKnowledgeGraphQuery(string Text, string TenantId) : IQuery<GraphDataDto>;
|
|
|