agentic-openapi-parser
    Preparing search index...

    Interface IDynamicToolExecutorService

    interface IDynamicToolExecutorService {
        execute(
            spec: Record<string, unknown>,
            toolName: string,
            args: Record<string, unknown>,
            options?: ExecuteToolOptions,
        ): Promise<unknown>;
        executeMany(
            spec: Record<string, unknown>,
            calls: ToolCallRequest[],
            options?: ExecuteToolOptions,
        ): Promise<ToolCallOutcome[]>;
    }

    Hierarchy (View Summary)

    Implemented by

    Index