UNPKG

@openai/agents-core

Version:

The OpenAI Agents SDK is a lightweight yet powerful framework for building multi-agent workflows.

7 lines (6 loc) 249 B
export type SerializedBinary = { __type: string; data: string; }; export declare function serializeBinary(value: unknown): SerializedBinary | undefined; export declare function toUint8ArrayFromBinary(value: unknown): Uint8Array | undefined;