@langwatch/scenario
    Preparing search index...

    Interface SttConfig

    Descriptor form of STT config — a "provider/model" spec is resolved to a concrete STTProvider via the router. Use this when you want the default provider for a vendor; pass an STTProvider instance on VoiceConfig.stt for a fully custom (BYO) provider.

    interface SttConfig {
        apiKey?: string;
        language?: string;
        model: string;
    }
    Index

    Properties

    apiKey?: string

    Per-run API key override.

    language?: string

    ISO language hint, when the provider supports it.

    model: string

    litellm-style spec, e.g. "openai/gpt-4o-transcribe".