ISummaryProvider
Interface
Defines methods for providing summaries and answering questions about documents.
Definition
Namespace:Telerik.Windows.Controls.FixedDocumentViewersUI.AIProviders
Assembly:Telerik.Windows.Controls.FixedDocumentViewersUI.dll
Syntax:
C#
public interface ISummaryProvider
Derived Classes:
Properties
Gets or sets additional instructions to be appended to the prompt for summarization or question answering.
C#
string PromptAddition { get; set; }
Methods
Asks a question about the specified document and returns the answer.
Generates a summary for the specified document.
C#
string GetSummary(SimpleTextDocument simpleDocument)
The document to summarize.
Returns:A summary string generated by the provider.