Skip to main content

GetModelsChoicesResponseSchema

models object[]required

List of model objects available for inference selection.

  • Array [
  • display_namestringrequired

    User-friendly display name of the model.

    is_finetuned_modelbooleanrequired

    When true, the model is a fine-tuned model; when false, it is a base model.

    model_idintegerrequired

    Unique identifier of the model.

    model_namestringrequired

    Name of the model, used as the model value in inference requests.

    hf_repostring

    Hugging Face repository identifier of the base model, if applicable.

    Default: null
    base_mode_hf_repostring

    Hugging Face repository identifier of the underlying base model for a fine-tuned model, if applicable.

    Default: null
  • ]
  • statusstring

    Indicates the result of the operation. Typically "success".

    Default: success
    GetModelsChoicesResponseSchema
    {
    "models": [
    {
    "display_name": "string",
    "is_finetuned_model": true,
    "model_id": 0,
    "model_name": "string",
    "hf_repo": null,
    "base_mode_hf_repo": null
    }
    ],
    "status": "success"
    }