2 lines
798 B
TypeScript
2 lines
798 B
TypeScript
export declare const CREATE_TOOL_DESCRIPTION = "A tool for creating Google Calendar events and meetings.\n\nINPUT example:\n\"action\": \"google_calendar_create\",\n\"action_input\": \"create a new meeting with John Doe tomorrow at 4pm\"\n\nOUTPUT:\nOutput is a confirmation of a created event.\n";
|
|
export declare const VIEW_TOOL_DESCRIPTION = "A tool for retrieving Google Calendar events and meetings.\nINPUT examples:\n\"action\": \"google_calendar_view\",\n\"action_input\": \"display meetings for today\"\n\n\"action\": \"google_calendar_view\",\n\"action_input\": \"show events for tomorrow\"\n\n\"action\": \"google_calendar_view\",\n\"action_input\": \"display meetings for tomorrow between 4pm and 8pm\"\n\nOUTPUT:\n- title, start time, end time, attendees, description (if available)\n";
|