Interface IGenerativeAIDownloadDocumentWorkerParameters

AI download document job parameters Interface

interface IGenerativeAIDownloadDocumentWorkerParameters {
    documentPath: string;
    feedback?: string;
    functions?: Map<string, IPromptFunction>;
    history?: IPromptHistory[];
    instructions?: string;
    maxTokens?: number;
    objectStoreId: string;
    temperature?: number;
    threadId: string;
    type: DownloadDocument;
}

Hierarchy (view full)

Properties

documentPath: string

The path of the document to download.

feedback?: string

The user feedback for the AI job.

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.

objectStoreId: string

The object store id of the document to download.

temperature?: number

The temperature for the LLM.

threadId: string

The thread id

The AI job type.