Member Junction
    Preparing search index...

    Interface MJTaskEntity_ITaskLoopSubAgentBody

    A sub-agent run once per loop iteration.

    interface MJTaskEntity_ITaskLoopSubAgentBody {
        context?: unknown;
        message: string;
        name: string;
        templateParameters?: Record<string, string>;
    }
    Index

    Properties

    context?: unknown

    Runtime context propagated to the sub-agent — API keys, environment settings, and the like.

    message: string

    What to tell the sub-agent.

    name: string

    Sub-agent name.

    templateParameters?: Record<string, string>

    Values bound into the sub-agent's prompt template.