Interface ChatInputMulti

ChatInputMulti represents the full potential input options for chat.

interface ChatInputMulti {
    inputExtension: InputExtension;
    maxTokens: number;
    messages: ChatInputMessage[];
    model: string;
    outputExtension: OutputExtension;
    temperature: number;
    topK: number;
    topP: number;
}

Properties

inputExtension: InputExtension

inputExtension represents a set of optional pre-processing integrations.

maxTokens: number

maxTokens represents the max number of tokens to return.

messages: ChatInputMessage[]

messages represents the set of messages to process.

model: string

model represents the model to use.

outputExtension: OutputExtension

inputExtension represents a set of optional post-processing integrations.

temperature: number

temperature represents the randomness in GPT's output.

topK: number

topK represents the variability of the generated text.

topP: number

topP represents the diversity of the generated text.