Type Alias WaldiezUserProxy

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

Waldiez User Proxy Agent.

Type declaration

  • agentType: "user"
  • createdAt: string
  • data: Omit<
        WaldiezNodeUserProxyData,
        | "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 user proxy

The type of the node in a graph (agent)

The type of the agent (user)

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 WaldiezNodeUserProxyData