2024-11-08 11:55:23 +08:00
|
|
|
export default {
|
2025-04-07 09:10:55 +08:00
|
|
|
// baseUrl: 'http://39.98.44.136:8080', // 测试
|
2025-09-23 15:48:43 +08:00
|
|
|
baseUrl: 'http://ks.zhaopinzao8dian.com/api/ks', // 测试
|
2025-03-28 15:19:42 +08:00
|
|
|
// sseAI+
|
2025-04-07 09:10:55 +08:00
|
|
|
// StreamBaseURl: 'http://39.98.44.136:8000',
|
|
|
|
StreamBaseURl: 'https://qd.zhaopinzao8dian.com/ai',
|
2025-04-10 10:59:25 +08:00
|
|
|
// StreamBaseURl: 'https://qd.zhaopinzao8dian.com/ai/test',
|
2025-03-28 15:19:42 +08:00
|
|
|
// 语音转文字
|
2025-04-07 09:10:55 +08:00
|
|
|
// vioceBaseURl: 'ws://39.98.44.136:8080/speech-recognition',
|
|
|
|
vioceBaseURl: 'wss://qd.zhaopinzao8dian.com/api/speech-recognition',
|
2025-04-16 14:24:06 +08:00
|
|
|
// 语音合成
|
|
|
|
speechSynthesis: 'wss://qd.zhaopinzao8dian.com/api/speech-synthesis',
|
2025-04-10 10:59:25 +08:00
|
|
|
// indexedDB
|
2025-04-07 09:10:55 +08:00
|
|
|
DBversion: 2,
|
2025-04-16 14:24:06 +08:00
|
|
|
// 只使用本地缓寸的数据
|
|
|
|
OnlyUseCachedDB: true,
|
2025-06-20 10:10:46 +08:00
|
|
|
// 使用模拟定位
|
2025-09-23 14:56:30 +08:00
|
|
|
UsingSimulatedPositioning: true,
|
2024-11-08 11:55:23 +08:00
|
|
|
// 应用信息
|
|
|
|
appInfo: {
|
|
|
|
// 应用名称
|
|
|
|
name: "青岛市就业服务",
|
2025-04-07 09:10:55 +08:00
|
|
|
// 地区名
|
2025-09-29 11:53:10 +08:00
|
|
|
areaName: '喀什',
|
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
|
|
|
},
|
2025-06-20 10:10:46 +08:00
|
|
|
// AI -> 上传文件数量
|
2025-03-28 15:19:42 +08:00
|
|
|
allowedFileNumber: 2,
|
2025-06-20 10:10:46 +08:00
|
|
|
// AI -> 上传文件类型
|
2025-03-28 15:19:42 +08:00
|
|
|
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
|
2025-06-20 10:10:46 +08:00
|
|
|
],
|
|
|
|
// 首页询问 -> 推荐权重
|
|
|
|
weights: {
|
|
|
|
categories: 1, //岗位
|
|
|
|
experience: 0.3, //经验
|
|
|
|
salary: 0.5, // 薪资
|
|
|
|
areas: 0.5 // 区域
|
2025-07-14 15:38:39 +08:00
|
|
|
},
|
|
|
|
shareConfig: {
|
|
|
|
baseUrl: 'https://qd.zhaopinzao8dian.com',
|
|
|
|
title: '找工作,用 AI 更高效|青岛市智能求职平台',
|
|
|
|
desc: '融合海量岗位、智能简历匹配、竞争力分析,助你精准锁定理想职位!',
|
|
|
|
imgUrl: 'https://qd.zhaopinzao8dian.com/file/csn/qd_shareLogo.jpg',
|
2025-06-20 10:10:46 +08:00
|
|
|
}
|
2024-11-08 11:55:23 +08:00
|
|
|
}
|