objectiveai-sdk 2.0.7

ObjectiveAI SDK, definitions, and utilities
Documentation
{
  "title": "functions.alpha_vector.RemoteFunction",
  "anyOf": [
    {
      "title": "Branch",
      "type": "object",
      "properties": {
        "description": {
          "type": "string"
        },
        "input_schema": {
          "$ref": "functions.alpha_vector.expression.VectorFunctionInputSchema"
        },
        "tasks": {
          "type": "array",
          "items": {
            "$ref": "functions.alpha_vector.BranchTaskExpression"
          }
        },
        "type": {
          "type": "string",
          "enum": [
            "alpha.vector.branch.function"
          ]
        }
      }
    },
    {
      "title": "Leaf",
      "type": "object",
      "properties": {
        "description": {
          "type": "string"
        },
        "input_schema": {
          "$ref": "functions.alpha_vector.expression.VectorFunctionInputSchema"
        },
        "tasks": {
          "type": "array",
          "items": {
            "$ref": "functions.alpha_vector.LeafTaskExpression"
          }
        },
        "type": {
          "type": "string",
          "enum": [
            "alpha.vector.leaf.function"
          ]
        }
      }
    }
  ]
}