Hierarchy

  • GmailBaseTool
    • GmailCreateDraft

Constructors

Properties

Constructors

Properties

description: string = CREATE_DRAFT_DESCRIPTION
name: string = "create_gmail_draft"
schema: ZodObject<{
    bcc: ZodOptional<ZodArray<ZodString, "many">>;
    cc: ZodOptional<ZodArray<ZodString, "many">>;
    message: ZodString;
    subject: ZodString;
    to: ZodArray<ZodString, "many">;
}, "strip", ZodTypeAny, {
    message: string;
    subject: string;
    to: string[];
    bcc?: string[];
    cc?: string[];
}, {
    message: string;
    subject: string;
    to: string[];
    bcc?: string[];
    cc?: string[];
}> = ...
gmail: Gmail