8 lines
492 B
TypeScript
8 lines
492 B
TypeScript
//#region src/constants/index.d.ts
|
|
declare const COPILOT_CLOUD_API_URL = "https://api.cloud.copilotkit.ai";
|
|
declare const COPILOT_CLOUD_VERSION = "v1";
|
|
declare const COPILOT_CLOUD_CHAT_URL = "https://api.cloud.copilotkit.ai/copilotkit/v1";
|
|
declare const COPILOT_CLOUD_PUBLIC_API_KEY_HEADER = "X-CopilotCloud-Public-Api-Key";
|
|
//#endregion
|
|
export { COPILOT_CLOUD_API_URL, COPILOT_CLOUD_CHAT_URL, COPILOT_CLOUD_PUBLIC_API_KEY_HEADER, COPILOT_CLOUD_VERSION };
|
|
//# sourceMappingURL=index.d.cts.map
|