Type Alias WaldiezRagUser

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

Waldiez RAG User.

Type declaration

  • agentType: "rag_user"
  • createdAt: string
  • data: Omit<
        WaldiezNodeRagUserData,
        | "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 RAG user

The type of the node in a graph (agent)

The type of the agent (RAG user)

The name of the user

The description of the user

The tags of the user

The requirements of the user

The creation date of the user

The update date of the user

The data of the user. See WaldiezNodeRagUserData