Type Alias WaldiezAssistant

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

Waldiez Assistant Agent.

Type declaration

  • agentType: "assistant"
  • createdAt: string
  • data: Omit<
        WaldiezNodeAssistantData,
        | "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 assistant

The type of the node in a graph (agent)

The type of the agent (assistant)

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 WaldiezNodeAssistantData