Interface SpeechProviderCatalogEntry

interface SpeechProviderCatalogEntry {
    id: string;
    kind: SpeechProviderKind;
    label: string;
    envVars: readonly string[];
    local: boolean;
    streaming?: boolean;
    description: string;
    extensionName?: string;
    defaultModel?: string;
    defaultVoice?: string;
    features?: readonly string[];
    available?: boolean;
}

Properties

id: string
label: string
envVars: readonly string[]
local: boolean
streaming?: boolean
description: string
extensionName?: string
defaultModel?: string
defaultVoice?: string
features?: readonly string[]
available?: boolean