Skip to content

Advanced & Agent Operations

Meta-cognitive tools for controlling the agent itself and performing developer-level operations.

Architect & Beta Tools

Generate Workflow (Beta)

Beta Feature

This action is experimental and may not always generate perfect graphs. It is intended for advanced users to prototype workflows via text description.

Typearchitect.generate_workflow
DescriptionCreates a new agent workflow graph from a text description.
InputsName (String), Description (String), Nodes JSON (String), Wires JSON (String)
OutputsSuccess Message (String)

Examples

  • generate_workflow(name="HelloAgent", description="Says hello", nodes_json="[...]", wires_json="[...]")

Coding & Developer Tools

Run Python Script

Typecoding.run_python
DescriptionExecutes a Python script in a constrained environment.
InputsScript (String), Args (Array<String>)
OutputsOutput (String), Error (String)

Examples

  • run_python(script="print('Hello World')", args=[])