@sierai/stargate
Version:
Stargate Tools for AI Agents.
16 lines (12 loc) • 509 B
text/typescript
import { StargateProvider } from "@sierai/stargate-toolmaker";
import getAuthProviders from "./tools/get-auth-provider";
import getAuthServerUrl from "./tools/get-auth-server-url";
const authProvider = new StargateProvider({
type: StargateProvider.Type.Extension,
name: "Stargate Connection",
description:
"This tool provider will allow you to connect to many services using OAuth",
});
authProvider.addTool(getAuthProviders);
authProvider.addTool(getAuthServerUrl);
export default authProvider;