Skip to main content

ActorUpdate

Payload used to update Actor. Optional fields include name, alias, description, function, confirmation_policy, and 4 more.

name object
anyOf
string
alias object
anyOf
string
description object
anyOf
string
function object
anyOf
sourceSource (string)required
inputs object
property name*any
Default value: {}
outputs object
property name*any
Default value: {}
dependenciesstring[]
Default value: []
decorators object[]

Decorator bindings declared in configuration. Configured bindings take precedence over source bindings with the same kind and name; an empty list uses source bindings only.

  • Array [
  • decoratorDecorator (string)required

    Decorator name, such as use_connector or use_llm. The name must identify a supported decorator.

    nameName (string)required

    Binding variable name injected into the namespace

    arguments object

    Decorator arguments, e.g. {'ref':...} or {'model':...}

    property name*any

    Decorator arguments, e.g. {'ref':...} or {'model':...}

  • ]
  • confirmation_policy object
    anyOf
    string

    Possible values: [auto, confirm, deny]

    collection_id object
    anyOf
    string

    Possible values: non-empty

    folder_id object
    anyOf
    string
    tags object
    anyOf
  • Array [
  • string
  • ]
  • options object
    anyOf
    object
    ActorUpdate
    {
    "name": "string",
    "alias": "string",
    "description": "string",
    "function": {
    "source": "string",
    "inputs": {},
    "outputs": {},
    "dependencies": [
    "string"
    ],
    "decorators": [
    {
    "decorator": "string",
    "name": "string",
    "arguments": {}
    }
    ]
    },
    "confirmation_policy": "auto",
    "collection_id": "string",
    "folder_id": "string",
    "tags": [
    "string"
    ],
    "options": {}
    }