Member Junction
    Preparing search index...

    Represents a variable in the data context or template data for agent execution. Used to pass dynamic data to agents during testing and execution.

    interface DataContextVariable {
        name: string;
        type: "string" | "number" | "boolean" | "object";
        value: string;
    }
    Index

    Properties

    Properties

    name: string

    Variable name used in agent prompts and templates

    type: "string" | "number" | "boolean" | "object"

    Data type for proper conversion during execution

    value: string

    String representation of the variable value