nexus-agents - v2.80.0
    Preparing search index...

    Interface AgentResponse

    Response to an agent message.

    interface AgentResponse {
        messageId: string;
        status: "failed" | "accepted" | "rejected" | "completed";
        data?: unknown;
        error?: string;
    }
    Index

    Properties

    messageId: string

    Original message ID

    status: "failed" | "accepted" | "rejected" | "completed"

    Response status

    data?: unknown

    Response data

    error?: string

    Error message if failed