File size: 765 Bytes
7d2a23e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
  "name": "squadds_ml_predict",
  "description": "Run inference against the SQuADDS ML Hugging Face Space to predict device geometry from target physics inputs.",
  "input_schema": {
    "type": "object",
    "properties": {
      "model_id": {
        "type": "string",
        "description": "Model identifier returned by GET /models."
      },
      "inputs": {
        "description": "Single input object or batch of input objects using the exact input keys for the selected model."
      },
      "options": {
        "type": "object",
        "properties": {
          "include_scaled_outputs": {
            "type": "boolean",
            "default": false
          }
        }
      }
    },
    "required": [
      "model_id",
      "inputs"
    ]
  }
}