generative-ts

Interface AmazonTitanTextOptions

interface AmazonTitanTextOptions {
    $prompt: string;
    maxTokenCount?: number;
    modelId: string;
    stopSequences?: string[];
    temperature?: number;
    topP?: number;
}

Hierarchy

  • ModelRequestOptions
    • AmazonTitanTextOptions

Properties

$prompt: string
maxTokenCount?: number
modelId: string
stopSequences?: string[]
temperature?: number
topP?: number