Merge · Schema

ModelOperation

# The ModelOperation Object ### Description The `ModelOperation` object is used to represent the operations that are currently supported for a given model. ### Usage Example View what operations are supported for the `Candidate` endpoint.

IntegrationsPlatformUnified APIAgent HandlerLLM Gateway

Properties

Name Type Description
model_name string
available_operations array
required_post_parameters array
supported_fields array
View JSON Schema on GitHub

JSON Schema

merge-modeloperation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ModelOperation",
  "title": "ModelOperation",
  "type": "object",
  "properties": {
    "model_name": {
      "type": "string"
    },
    "available_operations": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "required_post_parameters": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "supported_fields": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  },
  "required": [
    "model_name",
    "available_operations",
    "required_post_parameters",
    "supported_fields"
  ],
  "description": "# The ModelOperation Object\n### Description\nThe `ModelOperation` object is used to represent the operations that are currently supported for a given model.\n\n### Usage Example\nView what operations are supported for the `Candidate` endpoint."
}