@astrasyncai/sdk
Version:
Universal SDK for registering AI agents with AstraSync
13 lines • 528 B
TypeScript
import { RegistrationResponse, AstraSyncOptions, AgentFormat } from './types';
export declare class AstraSync {
private api;
constructor(options: AstraSyncOptions);
register(agentData: any): Promise<RegistrationResponse>;
verify(agentId: string): Promise<boolean>;
detect(agentData: any): AgentFormat;
health(): Promise<boolean>;
}
export * from './types';
export { detectAgentFormat } from './utils/detector';
export { calculateTrustScore } from './utils/trustScore';
//# sourceMappingURL=index.d.ts.map