UNPKG

@coze/api

Version:

Official Coze Node.js SDK for seamless AI integration into your applications | 扣子官方 Node.js SDK,助您轻松集成 AI 能力到应用中

19 lines (18 loc) 581 B
/** * default coze base URL is api.coze.com */ export declare const COZE_COM_BASE_URL = "https://api.coze.com"; /** * change to api.coze.cn if you use https://coze.cn */ export declare const COZE_CN_BASE_URL = "https://api.coze.cn"; /** * default base websocket URL is wss://ws.coze.com */ export declare const COZE_COM_BASE_WS_URL = "wss://ws.coze.com"; /** * change to wss://ws.coze.cn if you use https://coze.cn */ export declare const COZE_CN_BASE_WS_URL = "wss://ws.coze.cn"; export declare const POLL_INTERVAL = 5000; export declare const MAX_POLL_INTERVAL = 30000;