UNPKG

contextual-agent-sdk

Version:

SDK for building AI agents with seamless voice-text context switching

29 lines 1.01 kB
export interface AttributionInfo { library: string; version: string; author: string; company: string; innovation: string; url: string; repository: string; license: string; } export declare function getAttribution(): AttributionInfo; export declare function getHTMLAttribution(): string; export declare function getMarkdownAttribution(): string; export declare function getTextAttribution(): string; export declare function getJSONAttribution(): Record<string, any>; export declare function reportUsage(options?: { projectName?: string; environment?: 'development' | 'production'; userAgent?: string; features?: string[]; disableTelemetry?: boolean; }): Promise<void>; export declare function logAttribution(): void; export declare function validateAttribution(packageJson: any): { isValid: boolean; suggestions: string[]; }; export declare function getAttributionBadge(style?: 'markdown' | 'html'): string; //# sourceMappingURL=attribution.d.ts.map