UNPKG

@paybyrd/ai-agent-toolkit

Version:

Toolkit for building AI agents with various models

10 lines (9 loc) 274 B
import type { Context } from './configuration.js'; declare class PaybyrdAPI { private apiKey; private baseUrl; context: Context; constructor(apiKey: string, context?: Context); run(method: string, arg: any): Promise<string>; } export default PaybyrdAPI;