UNPKG

@openai/agents-core

Version:

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

5 lines (4 loc) 302 B
import type { Agent } from './agent'; import type { FunctionTool, Tool } from './tool'; export declare function registerAgentToolSourceAgent(tool: FunctionTool<any, any, any>, agent: Agent<any, any>): void; export declare function getAgentToolSourceAgent(tool: Tool<any>): Agent<any, any> | undefined;