Interface IGenerativeAIPromptOptions

The AI prompt options Interface Represents the options for an AI prompt.

interface IGenerativeAIPromptOptions {
    functions?: Map<string, IPromptFunction>;
    history?: IPromptHistory[];
    instructions?: string;
    maxTokens?: number;
    temperature?: number;
    threadId: string;
}

Hierarchy (view full)

Properties

functions?: Map<string, IPromptFunction>

The functions that can be called by the LLM.

history?: IPromptHistory[]

The context for the AI job.

instructions?: string

The instructions for the AI job.

maxTokens?: number

The maximum number of tokens to generate.

temperature?: number

The temperature for the LLM.

threadId: string

The thread id