Interface TextSnippetModel

Represents a text context snippet.

TextSnippetModel

interface TextSnippetModel {
    content: string;
    reference: TypedReferenceModel;
    score: number;
    type: string;
}

Properties

content: string

TextSnippetModel

TextSnippetModel

score: number

TextSnippetModel

type: string

The type of context snippet.

TextSnippetModel