Type Alias Followup

type Followup = {
    additionalContext: string;
    id: string;
    question: string;
    recommendedAnswer: RecommendedAnswer;
}
Index

Properties

additionalContext: string

Optional context collected from curated meant to be leveraged by LLM-based question recommendation system.

id: string

Unique identifier of the Followup.

question: string

Starter sample question.

recommendedAnswer: RecommendedAnswer