mirror of
https://github.com/modelstudioai/cli.git
synced 2026-09-14 19:49:23 +08:00
17 lines
683 B
TypeScript
17 lines
683 B
TypeScript
/**
|
|
* User-facing Aliyun Bailian / Model Studio console URLs.
|
|
*
|
|
* Single source of truth for all `bailian.console.aliyun.com/*` references
|
|
* across cli source. Currently pinned to cn-beijing — expand to a region map
|
|
* if/when overseas console support is added.
|
|
*/
|
|
|
|
/** Root entry — generic console landing, region picker. */
|
|
export const BAILIAN_CONSOLE_ROOT = "https://bailian.console.aliyun.com";
|
|
|
|
/** Region-pinned console base. Add a region map if/when overseas is supported. */
|
|
export const BAILIAN_CONSOLE = `${BAILIAN_CONSOLE_ROOT}/cn-beijing`;
|
|
|
|
/** Direct deep link to API key management page. */
|
|
export const API_KEY_PAGE = `${BAILIAN_CONSOLE}/?tab=app#/api-key`;
|