@langwatch/scenario
    Preparing search index...

    Interface STTProvider

    Speech-to-text provider contract. Implementations consume an AudioChunk (PCM16 / 24 kHz / mono) and return a text transcript.

    Deliberately tiny — a single async method — so a plain object literal satisfies it without importing any provider SDK.

    interface STTProvider {
        transcribe(audio: AudioChunk): Promise<string>;
    }

    Implemented by

    Index

    Methods

    Methods