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

    Interface ExpertParticipation

    Expert participation record in a session.

    interface ExpertParticipation {
        expertId: string;
        role: AgentRole;
        joinedAt: string;
        status:
            | "failed"
            | "pending"
            | "working"
            | "submitted"
            | "reviewing"
            | "voted";
        submittedAt?: string;
        retryCount: number;
    }
    Index

    Properties

    expertId: string
    role: AgentRole
    joinedAt: string
    status: "failed" | "pending" | "working" | "submitted" | "reviewing" | "voted"
    submittedAt?: string
    retryCount: number