objectiveai-sdk 2.0.7

ObjectiveAI SDK, definitions, and utilities
Documentation
{
  "title": "functions.expression.TaskOutput",
  "description": "Owned task output variants.",
  "anyOf": [
    {
      "title": "Scalar",
      "description": "A single scalar score.",
      "type": "number",
      "minimum": -3.4028234663852886e+38,
      "maximum": 3.4028234663852886e+38
    },
    {
      "title": "Vector",
      "description": "A vector of scores.",
      "type": "array",
      "items": {
        "type": "number",
        "minimum": -3.4028234663852886e+38,
        "maximum": 3.4028234663852886e+38
      }
    },
    {
      "title": "Vectors",
      "description": "Multiple vectors of scores (from mapped tasks).",
      "type": "array",
      "items": {
        "type": "array",
        "items": {
          "type": "number",
          "minimum": -3.4028234663852886e+38,
          "maximum": 3.4028234663852886e+38
        }
      }
    },
    {
      "title": "Err",
      "description": "An error occurred during execution.",
      "type": "object",
      "properties": {
        "error": {}
      }
    }
  ]
}