The AI job parameters Interface Parameters for AI job type.

interface IJobParametersAI {
    functions?: Map<string, IPromptFunction>;
    history?: IPromptHistory[];
    instructions?: string;
    maxTokens?: number;
    prompt: string;
    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.

prompt: string

The prompt for the AI job.

temperature?: number

The temperature for the LLM.

threadId: string

The thread id, if within a conversation.