UNPKG

@agentdao/core

Version:

Core functionality, skills, and ready-made UI components for AgentDAO - Web3 subscriptions, content generation, social media, help support, live chat, RSS fetching, web search, and agent pricing integration

12 lines (11 loc) 362 B
/** * AgentBridgeClient for interacting with the AgentDAO API. * @param baseUrl - The base URL of the AgentDAO API * @param token - The AgentDAO API key (required) */ export declare class AgentBridgeClient { private baseUrl; private token?; constructor(baseUrl: string, token?: string | undefined); getAgent(agentId: string): Promise<any>; }