@artinet/sdk
Version:
TypeScript SDK for Agentic Communication
31 lines • 698 B
JavaScript
/**
* @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 = {}));
//# sourceMappingURL=protocol.js.map