Interface AIPrompt

Represents the structure of the AI prompt which includes context and examples.

interface AIPrompt {
    context: string;
    examples: AIExample[];
}

Properties

Properties

context: string

The context or background information for the AI prompt.

examples: AIExample[]

An array of examples, each consisting of input and output pairs.

Generated using TypeDoc