@langwatch/scenario
    Preparing search index...

    Interface TtsProvider

    A TTS provider registration — a litellm-style prefix and the function that synthesizes for the names served by that prefix.

    interface TtsProvider {
        prefix: string;
        synth: TTSCallable;
    }
    Index

    Properties

    Properties

    prefix: string