Gladia · Schema

DiarizationConfigDTO

Speech-to-TextTranscriptionAudio IntelligenceReal-TimeSpeaker DiarizationTranslationWebSocketREST

Properties

Name Type Description
number_of_speakers integer Exact number of speakers in the audio
min_speakers integer Minimum number of speakers in the audio
max_speakers integer Maximum number of speakers in the audio
View JSON Schema on GitHub

JSON Schema

gladia-diarization-config.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.gladia.io/schemas/DiarizationConfigDTO",
  "title": "DiarizationConfigDTO",
  "type": "object",
  "properties": {
    "number_of_speakers": {
      "type": "integer",
      "description": "Exact number of speakers in the audio",
      "example": 3,
      "minimum": 1
    },
    "min_speakers": {
      "type": "integer",
      "description": "Minimum number of speakers in the audio",
      "example": 1,
      "minimum": 0
    },
    "max_speakers": {
      "type": "integer",
      "description": "Maximum number of speakers in the audio",
      "example": 2,
      "minimum": 0
    }
  }
}