/** * H.AI Agent Platform SDK * * Easy-to-use TypeScript SDK for the H.AI Agent Platform * Build AI-powered web automation into your applications * * @example * ```typescript * import { WebAgent } from 'agp-js-sdk'; * * // Authenticate * const agent = await WebAgent.init(); * * // Run web automation task * const task = await agent.run('Find the cheapest MacBook Pro on Amazon'); * * // Monitor in real-time * task.onUpdate((event) => { * console.log('Agent action:', event.type, event.data); * }); * * await task.waitForCompletion(); * ``` */ export { WebAgent } from './web-agent'; export { AgentPlatformClient } from './client'; export { AgentTask } from './task'; export { WebAgent as AgentPlatform } from './web-agent'; export { AgentTask as TrajectoryWrapper } from './task'; export * from './types'; export declare const SDK_VERSION = "0.1.0"; export type { SDKConfig as Config, WebTask as Task, Trajectory as TrajectoryData, TrajectoryStatus as Status, TrajectoryEvent as Event, AvailableAgent as Agent } from './types'; import { WebAgent } from './web-agent'; export default WebAgent; //# sourceMappingURL=agp.d.ts.map