NAiOS IconNAiOS Logo
Volver al catálogo

Gladia

gladia

Gladia provides state-of-the-art audio transcription and intelligence services through a simple API, enabling real-time and asynchronous transcription, translation, and audio analysis.

Acciones
7
Triggers
0
Autenticación
OAuth gestionado
No
Información técnica: el detalle de parámetros, schemas y triggers de esta página está pensado para equipos de integración. Si solo necesitas saber si tu herramienta favorita está disponible, basta con ver la lista de acciones.

Acciones disponibles (7)

Cada acción es una operación que el agente puede ejecutar contra este conector. Haz clic en una acción para ver sus parámetros.

Get live transcription resultGLADIA_GET_LIVE_TRANSCRIPTION_RESULTAcción

Tool to retrieve metadata and results of a live transcription job. Use when you need detailed status or results for a specific live transcription session.

Parámetros de entrada

  • idstringObligatorio

    Unique identifier of the live transcription job

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get Pre-recorded Transcription ResultGLADIA_GET_PRE_RECORDED_TRANSCRIPTION_RESULTAcción

Tool to retrieve metadata for a pre-recorded transcription job. Use when checking the status or retrieving results of a specific job ID.

Parámetros de entrada

  • idstringObligatorio

    UUID of the pre-recorded transcription job

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Initiate Live Transcription SessionGLADIA_INITIATE_LIVE_SESSIONAcción

Tool to initiate a live transcription session. Use before streaming audio to get a WebSocket URL.

Parámetros de entrada

  • modelstringenum

    Transcription model to use.

    solaria-1solaria-2
  • regionstringenum

    Processing region; one of 'us-west' or 'eu-west'.

    us-westeu-west
  • callbackboolean

    Whether to enable callback delivery.

  • channelsinteger

    Number of audio channels (1-8).

  • encodingstringenum

    Audio encoding format.

    wav/pcmwav/alawwav/ulaw
  • bit_depthintegerenum

    Audio sample bit depth.

    8162432
  • endpointingnumber

    Silence duration in seconds to end an utterance.

  • sample_rateintegerenum

    Audio sample rate in Hz.

    800016000320004410048000
  • pre_processingobject

    Optional pre-processing settings object.

  • callback_configobject

    Callback delivery settings if callback is true.

  • custom_metadataobject

    Arbitrary key/value metadata for the session.

  • language_configobject

    Optional language settings object.

  • messages_configobject

    Optional WebSocket message delivery configuration.

  • post_processingobject

    Optional post-processing settings object.

  • realtime_processingobject

    Optional realtime processing settings object.

  • maximum_duration_without_endpointingnumber

    Maximum seconds before forcing utterance end.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Initiate Pre-Recorded TranscriptionGLADIA_INITIATE_PRE_RECORDED_TRANSCRIPTIONAcción

Tool to initiate a pre-recorded transcription job. Use when you have an audio URL and need asynchronous transcription results.

Parámetros de entrada

  • modelstringenum

    Transcription model to use.

    solaria-1solaria-2
  • audio_urlstringObligatorio

    URL to an audio or video file (public URL or previously uploaded Gladia file).

  • custom_metadataobject

    Optional arbitrary metadata to attach to the job.

  • language_configobject

    Configuration for preferred language handling.

  • subtitles_configobject

    Configuration for subtitle generation.

  • diarization_configobject

    Configuration for speaker diarization.

  • translation_configobject

    Configuration for translation of transcription.

  • summarization_configobject

    Configuration for summarization of transcription.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

List live transcription jobsGLADIA_LIST_LIVE_TRANSCRIPTIONSAcción

Tool to list live transcription jobs. Use when you need an overview of live transcription sessions with optional filtering and pagination. Use after setting up live transcription.

Parámetros de entrada

  • datestring

    Filter items relevant to a specific date in ISO format (YYYY-MM-DD).

  • limitinteger

    Max number of items to return.

  • offsetinteger

    The starting point for pagination; 0 starts from the first item.

  • statusstring[]

    Filter by item status; accepts multiple values (e.g., ['running','completed']).

  • after_datestring

    Filter for items after the specified ISO date-time (use with before_date for a range).

  • before_datestring

    Include items that occurred before the specified ISO date-time.

  • custom_metadataobject

    Filter by custom metadata object (e.g., {'user': 'John Doe'}).

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Gladia List Pre-Recorded TranscriptionsGLADIA_LIST_PRE_RECORDED_TRANSCRIPTIONSAcción

Tool to list pre-recorded transcription jobs with optional filters. Use after submitting or querying jobs to retrieve paginated results.

Parámetros de entrada

  • datestring

    Filter for a specific date in ISO format (YYYY-MM-DD)

  • limitinteger

    Maximum number of items to return; must be >= 1

  • offsetinteger

    Start index for pagination; must be >= 0

  • statusstring[]

    Filter by one or more job statuses

  • after_datestring

    Include items after this ISO date-time (e.g., 2023-08-01T00:00:00Z)

  • before_datestring

    Include items before this ISO date-time (e.g., 2023-08-15T13:45:30Z)

  • custom_metadataobject

    Custom metadata filter, e.g., {"user": "John Doe"}

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Upload Audio/Video FileGLADIA_UPLOAD_AUDIO_VIDEO_FILEAcción

Tool to upload an audio or video file to Gladia's servers. Use when preparing a file for transcription.

Parámetros de entrada

  • file_pathstringObligatorio

    Absolute or relative path to the audio/video file

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not