Type Alias WaldiezModel

WaldiezModel: {
    createdAt: string;
    data: Omit<
        WaldiezModelNodeData,
        | "label"
        | "description"
        | "name"
        | "tags"
        | "requirements"
        | "createdAt"
        | "updatedAt",
    >;
    description: string;
    id?: string;
    name: string;
    requirements: string[];
    tags: string[];
    type: "model";
    updatedAt: string;
}

Waldiez Model.

Type declaration

  • createdAt: string
  • data: Omit<
        WaldiezModelNodeData,
        | "label"
        | "description"
        | "name"
        | "tags"
        | "requirements"
        | "createdAt"
        | "updatedAt",
    >
  • description: string
  • Optionalid?: string
  • name: string
  • requirements: string[]
  • tags: string[]
  • type: "model"
  • updatedAt: string

The id of the model

The type of the node in a graph (model)

The name of the model

The description of the model

The tags of the model

The requirements of the model

The creation date of the model

The update date of the model

The data of the model. See WaldiezModelNodeData