14 lines
570 B
JavaScript
14 lines
570 B
JavaScript
"use strict";
|
|
const base_url = "https://takway-ai.top:8002";
|
|
const base_url_other = "https://takway-ai.top:8001";
|
|
const filePrefix = "https://takway-ai.top:8002/api/files/";
|
|
const defaultAvatar = "e3672124045f11ef817ba036bc278b4c";
|
|
const wsUrl = "wss://takway-ai.top:8001/chat/streaming/lasting";
|
|
const wsVoiceCallUrl = "wss://takway-ai.top:8001/chat/voice_call";
|
|
exports.base_url = base_url;
|
|
exports.base_url_other = base_url_other;
|
|
exports.defaultAvatar = defaultAvatar;
|
|
exports.filePrefix = filePrefix;
|
|
exports.wsUrl = wsUrl;
|
|
exports.wsVoiceCallUrl = wsVoiceCallUrl;
|