UNPKG

@openai/agents-core

Version:

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

16 lines (15 loc) 1.18 kB
import { Agent } from '../agent'; import { RunItem, RunToolApprovalItem } from '../items'; import { Logger } from '../logger'; import { FunctionToolResult } from '../tool'; import { RunContext } from '../runContext'; import type { UnknownContext } from '../types'; import type { Runner, ToolErrorFormatter } from '../run'; import type { ToolRunApplyPatch, ToolRunShell } from './types'; export declare function executeShellActions(agent: Agent<any, any>, actions: ToolRunShell[], runner: Runner, runContext: RunContext, customLogger?: Logger | undefined, toolErrorFormatter?: ToolErrorFormatter): Promise<RunItem[]>; export declare function executeApplyPatchOperations(agent: Agent<any, any>, actions: ToolRunApplyPatch[], runner: Runner, runContext: RunContext, customLogger?: Logger | undefined, toolErrorFormatter?: ToolErrorFormatter): Promise<RunItem[]>; /** * Collects approval interruptions from tool execution results and any additional * RunItems (e.g., shell/apply_patch approval placeholders). */ export declare function collectInterruptions<TContext = UnknownContext>(toolResults: FunctionToolResult<TContext>[], additionalItems?: RunItem[]): RunToolApprovalItem[];