An instance of a speech-to-text adapter.

Remarks

This class is abstract, and as such cannot be used directly. Instead, use a provider plugin that exports its own child STT class, which inherits this class's methods.

Hierarchy (view full)

Constructors

Properties

Accessors

Methods

Constructors

  • Create a new instance of OpenAI STT.

    Parameters

    Returns STT

    Remarks

    apiKey must be set to your OpenAI API key, either using the argument or by setting the OPENAI_API_KEY environmental variable.

Properties

label: string = 'openai.STT'

Accessors

  • get capabilities(): STTCapabilities
  • Returns this STT's capabilities

    Returns STTCapabilities

Methods

  • Create a new instance of Groq STT.

    Parameters

    • opts: Partial<{
          apiKey?: string;
          baseURL?: string;
          client: OpenAI;
          detectLanguage: boolean;
          language: string;
          model: string;
      }> = {}

    Returns STT

    Remarks

    apiKey must be set to your Groq API key, either using the argument or by setting the GROQ_API_KEY environmental variable.