Get a model
GET /models/{id}
Ce point d’accès, publiquement accessible, retourne un modèle de transcription disponible dans le système à partir de son id.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ”Example
1Responses
Section titled “ Responses ”Information about a model.
object
object
The unique numeric identifier for the model. Use this ID when creating new resources that depend on a specific model, such as a live session.
Example
1The unique, human-readable name of the transcription model (e.g., ‘tiny’, ‘large-v1’, ‘large-v2’). This name is used to select a model when creating a new live session via the API.
Example
tinyIndicates whether the model is currently available for use. An inactive model (false) cannot be used to create new transcription sessions.
Example
trueThe estimated amount of VRAM (in Megabytes) required to load and run this model. This value is used to calculate resource allocation and prevent overloading the system.
Example
1250Example
{ "data": { "name": "tiny", "active": true, "vram": 625, "id": 1 }}object
Information about the error.