UNPKG

adk-typescript

Version:

TypeScript port of Google's Agent Development Kit (ADK)

37 lines (36 loc) 1.22 kB
import { GoogleApiToolSet } from './GoogleApiToolSet'; /** * Get the BigQuery tool set * @returns A promise that resolves to the BigQuery tool set */ export declare function getBigqueryToolSet(): Promise<GoogleApiToolSet>; /** * Get the Calendar tool set * @returns A promise that resolves to the Calendar tool set */ export declare function getCalendarToolSet(): Promise<GoogleApiToolSet>; /** * Get the Gmail tool set * @returns A promise that resolves to the Gmail tool set */ export declare function getGmailToolSet(): Promise<GoogleApiToolSet>; /** * Get the YouTube tool set * @returns A promise that resolves to the YouTube tool set */ export declare function getYoutubeToolSet(): Promise<GoogleApiToolSet>; /** * Get the Slides tool set * @returns A promise that resolves to the Slides tool set */ export declare function getSlidesToolSet(): Promise<GoogleApiToolSet>; /** * Get the Sheets tool set * @returns A promise that resolves to the Sheets tool set */ export declare function getSheetsToolSet(): Promise<GoogleApiToolSet>; /** * Get the Docs tool set * @returns A promise that resolves to the Docs tool set */ export declare function getDocsToolSet(): Promise<GoogleApiToolSet>;