UNPKG

@iqai/adk-cli

Version:

CLI tool for creating, running, and testing ADK-TS agents

20 lines 570 B
"use strict"; /** * Common constants used across the HTTP module */ Object.defineProperty(exports, "__esModule", { value: true }); exports.DEFAULT_API_PORT = exports.DEFAULT_APP_NAME = exports.USER_ID_PREFIX = void 0; /** * Prefix used to create user IDs for agents in the session service. * Format: "user_" + agentPath */ exports.USER_ID_PREFIX = "user_"; /** * Default app name for agent sessions */ exports.DEFAULT_APP_NAME = "adk-server"; /** * Default port for the ADK-TS API server */ exports.DEFAULT_API_PORT = 8042; //# sourceMappingURL=constants.js.map