@hashgraphonline/standards-agent-kit
Version:
A modular SDK for building on-chain autonomous agents using Hashgraph Online Standards, including HCS-10 for agent discovery and communication. https://hol.org
11 lines (10 loc) • 371 B
TypeScript
export interface ContentResolutionResult {
buffer: Buffer;
mimeType?: string;
fileName?: string;
wasReference?: boolean;
}
/**
* Resolves content from various input formats (content-ref, base64, plain text)
*/
export declare function resolveContent(input: string, providedMimeType?: string, providedFileName?: string): Promise<ContentResolutionResult>;