UNPKG

@sierai/stargate

Version:

Stargate Tools for AI Agents.

15 lines (11 loc) 407 B
import { StargateProvider } from "@sierai/stargate-toolmaker"; import sendGmail from "./tools/send-email"; import { Google } from "@sierai/stargate-auth"; const gmailProvider = new StargateProvider({ type: StargateProvider.Type.Connection, name: "Gmail", description: "This is Gmail tool provider", oauthProvider: new Google(), }); gmailProvider.addTool(sendGmail); export default gmailProvider;