Type Alias WaldiezGroupManager

WaldiezGroupManager: {
    agentType: "manager";
    createdAt: string;
    data: Omit<
        WaldiezNodeGroupManagerData,
        | "label"
        | "agentType"
        | "description"
        | "name"
        | "tags"
        | "requirements"
        | "createdAt"
        | "updatedAt",
    >;
    description: string;
    id?: string;
    name: string;
    requirements: string[];
    tags: string[];
    type: "agent";
    updatedAt: string;
}

Waldiez Group Chat Manager Agent.

Type declaration

  • agentType: "manager"
  • createdAt: string
  • data: Omit<
        WaldiezNodeGroupManagerData,
        | "label"
        | "agentType"
        | "description"
        | "name"
        | "tags"
        | "requirements"
        | "createdAt"
        | "updatedAt",
    >
  • description: string
  • Optionalid?: string
  • name: string
  • requirements: string[]
  • tags: string[]
  • type: "agent"
  • updatedAt: string

The id of the manager

The type of the node in a graph (agent)

The type of the agent (manager)

The name of the agent

The description of the agent

The tags of the agent

The requirements of the agent

The creation date of the agent

The update date of the agent

The data of the agent. See WaldiezNodeGroupManagerData