50 lines
1.6 KiB
JavaScript
50 lines
1.6 KiB
JavaScript
export default {
|
|
// baseUrl: 'http://39.98.44.136:8080', // 测试
|
|
baseUrl: 'https://qd.zhaopinzao8dian.com/api', // 测试
|
|
// sseAI+
|
|
// StreamBaseURl: 'http://39.98.44.136:8000',
|
|
StreamBaseURl: 'https://qd.zhaopinzao8dian.com/ai',
|
|
// 语音转文字
|
|
// vioceBaseURl: 'ws://39.98.44.136:8080/speech-recognition',
|
|
vioceBaseURl: 'wss://qd.zhaopinzao8dian.com/api/speech-recognition',
|
|
DBversion: 2,
|
|
// 应用信息
|
|
appInfo: {
|
|
// 应用名称
|
|
name: "青岛市就业服务",
|
|
// 地区名
|
|
areaName: '青岛市',
|
|
// AI名称
|
|
AIName: '小红',
|
|
// 应用版本
|
|
version: "1.0.0",
|
|
// 应用logo
|
|
logo: "",
|
|
// 官方网站
|
|
site_url: "",
|
|
// 政策协议
|
|
agreements: [{
|
|
title: "隐私政策",
|
|
url: ""
|
|
},
|
|
{
|
|
title: "用户服务协议",
|
|
url: ""
|
|
}
|
|
]
|
|
},
|
|
allowedFileNumber: 2,
|
|
allowedFileTypes: [
|
|
"text/plain", // .txt
|
|
"text/markdown", // .md
|
|
"text/html", // .html
|
|
"application/msword", // .doc
|
|
"application/vnd.openxmlformats-officedocument.wordprocessingml.document", // .docx
|
|
"application/pdf", // .pdf
|
|
"application/vnd.ms-powerpoint", // .ppt
|
|
"application/vnd.openxmlformats-officedocument.presentationml.presentation", // .pptx
|
|
"text/csv", // .csv
|
|
"application/vnd.ms-excel", // .xls
|
|
"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" // .xlsx
|
|
]
|
|
} |