@langwatch/scenario
    Preparing search index...

    Interface ResolvedVoiceConfig

    The resolved, ready-to-use per-run voice config. stt is always a concrete provider here (never a descriptor) — consumers read it directly.

    interface ResolvedVoiceConfig {
        audioFormat: AudioFormat;
        audioPlayback: boolean;
        includeAudio: boolean;
        includeTimeline: boolean;
        includeTraces: boolean;
        stt: STTProvider;
        tts?: TtsConfig;
    }
    Index

    Properties

    audioFormat: AudioFormat
    audioPlayback: boolean
    includeAudio: boolean
    includeTimeline: boolean
    includeTraces: boolean
    tts?: TtsConfig