objectiveai-sdk 2.0.7

ObjectiveAI SDK, definitions, and utilities
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  "title": "functions.ScalarFunctionTask",
  "description": "A compiled scalar function task ready for execution.",
  "type": "object",
  "$ref": "RemotePath",
  "properties": {
    "input": {
      "description": "The resolved input to pass to the function.",
      "$ref": "functions.expression.InputValue"
    },
    "output": {
      "description": "Expression to transform the task result into a valid function output.\n\nReceives `output` as the nested function's result (Scalar or Vector).\nMust return a `TaskOutputOwned` valid for the parent function's type (scalar or vector).\nSee [`ScalarFunctionTaskExpression::output`] for full documentation.",
      "$ref": "functions.expression.Expression"
    }
  }
}