Deepgram · Schema

ModelList

Artificial IntelligenceSpeech-To-TextText-To-SpeechTranscriptionVoice AI

Properties

Name Type Description
stt array Available speech-to-text models.
tts array Available text-to-speech models.
View JSON Schema on GitHub

JSON Schema

deepgram-modellist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ModelList",
  "title": "ModelList",
  "type": "object",
  "properties": {
    "stt": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Model"
      },
      "description": "Available speech-to-text models."
    },
    "tts": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Model"
      },
      "description": "Available text-to-speech models."
    }
  }
}