agents

Get Available Agent Stt Providers

Get the speech-to-text providers available to agents.

Each provider's status is resolved against the current date. Retired providers are omitted unless they match selected_provider, so an agent still saved on a retired provider can render it as a locked field.

get/api/v1/agents/stt/available

Query parameters

selected_providerstring nullable

Response

Successful Response

providerstring required

Speech-to-text provider value, as stored on the agent.

display_namestring required

Human-readable name of the provider.

deprecatedboolean

Whether the provider is in the deprecation warning window.

sunset_datestring date nullable

Date the provider becomes retired and can no longer be saved or selected.

removedboolean

Whether the provider is force-retired regardless of sunset_date.

fallbackstring nullable

Provider substituted at runtime for critical features once this one is retired.

status'active' | 'deprecated' | 'retired'

Effective deprecation state of a model, resolved against a reference date.

Example response

[
  {
    "provider": "Google STT V2",
    "display_name": "Google STT V2"
  }
]

Changes