UNPKG

@openai/agents-core

Version:

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

9 lines 189 B
export async function safeExecute(fn) { try { return [null, await fn()]; } catch (error) { return [error, null]; } } //# sourceMappingURL=safeExecute.mjs.map