Type Alias Starter

type Starter = {
    additionalContext: string;
    createdAt: string;
    followups?: Followup[];
    id: string;
    question: string;
    recommendedAnswer: RecommendedAnswer;
    updatedAt: string;
}
Index

Properties

additionalContext: string

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

createdAt: string

Datetime when the starter was created.

followups?: Followup[]

List of followups.

id: string

Unique identifier of the starter.

question: string

Starter sample question.

recommendedAnswer: RecommendedAnswer
updatedAt: string

Datetime when the starter was updated.