Files
ks-app-employment-service/config.js

45 lines
1.4 KiB
JavaScript
Raw Normal View History

2024-11-08 11:55:23 +08:00
export default {
2025-03-28 15:19:42 +08:00
baseUrl: 'http://39.98.44.136:8080', // 测试
// sseAI+
StreamBaseURl: 'http://39.98.44.136:8000',
// 语音转文字
vioceBaseURl: 'ws://39.98.44.136:6006/speech-recognition',
DBversion: 3,
2024-11-08 11:55:23 +08:00
// 应用信息
appInfo: {
// 应用名称
name: "青岛市就业服务",
2025-03-28 15:19:42 +08:00
// AI名称
AIName: '小红',
2024-11-08 11:55:23 +08:00
// 应用版本
version: "1.0.0",
// 应用logo
logo: "",
// 官方网站
site_url: "",
// 政策协议
agreements: [{
title: "隐私政策",
url: ""
},
{
title: "用户服务协议",
url: ""
}
]
2025-03-28 15:19:42 +08:00
},
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
]
2024-11-08 11:55:23 +08:00
}