UNPKG

@artinet/sdk

Version:

A TypeScript SDK for building collaborative AI agents.

35 lines (34 loc) 747 B
/** * Copyright 2025 The Artinet Project * SPDX-License-Identifier: Apache-2.0 */ /** * @description The protocol enum. */ export var Protocol; (function (Protocol) { /** * @description The A2A protocol. */ Protocol["A2A"] = "a2a"; /** * @description The MCP protocol. */ Protocol["MCP"] = "mcp"; /** * @description The ACP protocol. */ Protocol["ACP"] = "acp"; /** * @description The CHAT protocol. */ Protocol["CHAT"] = "chat"; /** * @description The NLWeb protocol. */ Protocol["NLWEB"] = "nlweb"; /** * @description The custom protocol for user-defined services. */ Protocol["CUSTOM"] = "custom"; })(Protocol || (Protocol = {}));