Skip to main content
List components of the uploaded ONNX model.

POST /revisions/:id/data/query (Command: describe)

Request Body

ParameterTypeRequiredDescription
enginestringYesMust be onnx.
commandstringYesMust be describe.

Response

ParameterTypeDescription
componentsarrayList of model file components.

Example

{
  "engine": "onnx",
  "command": "describe"
}
{
  "components": [
    {
      "path": "model.onnx",
      "size": 102400
    },
    {
      "path": "model.json",
      "size": 512
    }
  ]
}