UNPKG

@artinet/sdk

Version:

A TypeScript SDK for building collaborative AI agents.

12 lines (11 loc) 392 B
/** * Copyright 2025 The Artinet Project * SPDX-License-Identifier: Apache-2.0 */ import { A2A } from "../../types/index.js"; /** * Our universal executor for {@link A2A.Engine}. * @param engine - {@link A2A.Engine} to execute. * @param context - {@link A2A.Context} provided to the engine. */ export declare const execute: (engine: A2A.Engine, context: A2A.Context) => Promise<void>;