mirror of
https://github.com/xinnan-tech/xiaozhi-esp32-server.git
synced 2026-07-23 15:43:54 +08:00
321 lines
10 KiB
Vue
321 lines
10 KiB
Vue
<template>
|
||
<div class="welcome">
|
||
<!-- 公共头部 -->
|
||
<HeaderBar/>
|
||
<!-- 面包屑-->
|
||
<div class="breadcrumbs" style="padding: 20px;">
|
||
<el-breadcrumb separator="/">
|
||
<el-breadcrumb-item>控制台</el-breadcrumb-item>
|
||
<el-breadcrumb-item><router-link to="/home">智能体</router-link></el-breadcrumb-item>
|
||
<el-breadcrumb-item>配置智能体</el-breadcrumb-item>
|
||
</el-breadcrumb>
|
||
</div>
|
||
<el-main style="padding: 16px;display: flex;flex-direction: column;align-items: center;">
|
||
<div style="border-radius: 16px;background: #fafcfe; border: 1px solid #e8f0ff;max-width: 800px;">
|
||
<div
|
||
style="padding: 15px 24px;font-weight: 700;font-size: 19px;text-align: left;color: #3d4566;display: flex;gap: 13px;align-items: center;">
|
||
<div
|
||
style="width: 37px;height: 37px;background: #5778ff;border-radius: 50%;display: flex;align-items: center;justify-content: center;">
|
||
<img src="@/assets/home/setting-user.png" alt="" style="width: 19px;height: 19px;"/>
|
||
</div>
|
||
{{ form.agentName }} ({{ agentId }})
|
||
</div>
|
||
<div style="height: 1px;background: #e8f0ff;"/>
|
||
<div style="padding: 16px 24px;max-width: 792px;">
|
||
<el-form ref="form" :model="form" label-width="100px">
|
||
<el-form-item label="角色模版:">
|
||
<div style="display: flex;gap: 8px;flex-wrap: wrap;">
|
||
<div v-for="template in templates" :key="template.id" class="template-item" @click="selectTemplate(template)">
|
||
{{ template.agentName }}
|
||
</div>
|
||
</div>
|
||
</el-form-item>
|
||
<el-form-item label="助手昵称:">
|
||
<el-input v-model="form.agentCode"/>
|
||
</el-form-item>
|
||
<el-form-item label="角色音色:">
|
||
<div style="display: flex;gap: 8px;align-items: center;">
|
||
<div style="flex:1;">
|
||
<el-select v-model="form.ttsVoiceId" placeholder="请选择" style="width: 100%;">
|
||
<el-option v-for="item in ttsVoices" :key="item.id" :label="item.name"
|
||
:value="item.id">
|
||
</el-option>
|
||
</el-select>
|
||
</div>
|
||
<div class="audio-box">
|
||
<audio src="http://music.163.com/song/media/outer/url?id=447925558.mp3" controls
|
||
style="height: 100%;width: 100%;"/>
|
||
</div>
|
||
</div>
|
||
</el-form-item>
|
||
<el-form-item label="角色介绍:">
|
||
<el-input type="textarea" rows="5" resize="none" placeholder="请输入内容" v-model="form.systemPrompt" maxlength="2000" show-word-limit/>
|
||
</el-form-item>
|
||
<el-form-item label="记忆体:">
|
||
<el-input type="textarea" rows="5" resize="none" placeholder="请输入内容" v-model="form.systemPrompt" maxlength="1000" show-word-limit/>
|
||
<div style="display: flex;gap: 8px;align-items: center;">
|
||
<div style="color: #979db1;font-size: 11px;">当前记忆(每次对话后重新生成)</div>
|
||
<div class="clear-btn">
|
||
<i class="el-icon-delete-solid" style="font-size: 11px;"/>
|
||
清除
|
||
</div>
|
||
</div>
|
||
</el-form-item>
|
||
<el-form-item v-for="model in models" :key="model.label" :label="model.label">
|
||
<template slot="label">
|
||
<div style="line-height: 20px;">{{model.label}}</div>
|
||
</template>
|
||
<el-select v-model="form[model.key+'ModelId']" filterable placeholder="请选择" style="width: 100%;" disabled>
|
||
<el-option v-for="item in model.list" :key="item.id" :label="item.modelName" :value="item.id"/>
|
||
</el-select>
|
||
</el-form-item>
|
||
<el-form-item label="" class="lh-form-item" style="margin-top: -25px;">
|
||
<div style="color: #979db1;text-align: left;">除了“Qwen
|
||
实时”,其他模型通常会增加约1秒的延迟。改变模型后,建议清空记忆体,以免影响体验。
|
||
</div>
|
||
</el-form-item>
|
||
</el-form>
|
||
</div>
|
||
<div style="display: flex;padding: 16px;gap: 8px;align-items: center;">
|
||
<div class="save-btn" @click="saveConfig">
|
||
保存配置
|
||
</div>
|
||
<div class="reset-btn" @click="resetConfig">
|
||
重制
|
||
</div>
|
||
<div class="clear-text">
|
||
<img src="@/assets/home/red-info.png" alt="" style="width: 19px;height: 19px;"/>
|
||
保存配置后,需要重启设备,新的配置才会生效。
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</el-main>
|
||
<Footer :visible="true" />
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
import Api from '@/apis/api';
|
||
import HeaderBar from "@/components/HeaderBar.vue";
|
||
import Footer from "@/components/Footer.vue";
|
||
import {getUUID, goToPage, showDanger, showSuccess} from '@/utils'
|
||
|
||
export default {
|
||
name: 'RoleConfigPage',
|
||
components: {HeaderBar,Footer},
|
||
data() {
|
||
return {
|
||
agentId: this.$route.query.agentId,
|
||
form: {
|
||
agentCode:"",
|
||
agentName:"",
|
||
asrModelId:"",
|
||
intentModelId:"",
|
||
llmModelId:"",
|
||
memoryModelId:"",
|
||
systemPrompt:"",
|
||
ttsModelId:"",
|
||
ttsVoiceId:"",
|
||
vadModelId:"",
|
||
model:{}
|
||
},
|
||
ttsVoices: [],
|
||
models: [
|
||
{ label: '大语言模型(LLM)', key: 'llm', list: [] },
|
||
{ label: '语音转文本模型(ASR)', key: 'asr', list: [] },
|
||
{ label: '语音活动检测模型(VAD)', key: 'vad', list: [] },
|
||
{ label: '语音生成模型(TTS)', key: 'tts', list: [] },
|
||
{ label: '意图分类模型(Intent)', key: 'intent', list: [] },
|
||
{ label: '记忆增强模型(Memory)', key: 'memory', list: [] }
|
||
],
|
||
templates: []
|
||
}
|
||
},
|
||
mounted() {
|
||
// 获取智能体列表
|
||
this.fetchAgentTemplateList();
|
||
this.handleGetConfig();
|
||
this.fetchModelList();
|
||
this.getTtsVoicelList();
|
||
},
|
||
methods: {
|
||
fetchAgentTemplateList() {
|
||
// 获取智能体列表
|
||
Api.agent.getAgentTemplateList(({data}) => {
|
||
if (data.code === 0) {
|
||
this.templates = data.data
|
||
} else {
|
||
showDanger(data.msg)
|
||
}
|
||
})
|
||
},
|
||
fetchModelList() {
|
||
// 获取模型配置列表
|
||
Api.model.getModelList(({data}) => {
|
||
if (data.code === 0) {
|
||
let models = data.data;
|
||
this.models.map(model => {
|
||
model.list = models.filter(item => item.modelType.toLowerCase() === model.key)
|
||
})
|
||
console.log("models", this.models)
|
||
} else {
|
||
showDanger(data.msg)
|
||
}
|
||
})
|
||
},
|
||
getTtsVoicelList(ttsModelId) {
|
||
// 获取智能体列表
|
||
Api.model.getTtsVoiceList(ttsModelId || '',({data}) => {
|
||
if (data.code === 0) {
|
||
this.ttsVoices = data.data
|
||
} else {
|
||
showDanger(data.msg)
|
||
}
|
||
})
|
||
},
|
||
handleGetConfig(){
|
||
Api.agent.getAgentConfig(this.agentId, ({data}) => {
|
||
if (data.code === 0) {
|
||
this.form = data.data
|
||
} else {
|
||
showDanger(data.msg)
|
||
}
|
||
})
|
||
},
|
||
saveConfig() {
|
||
// 此处写保存配置逻辑
|
||
Api.agent.saveAgentConfig(this.agentId, this.form, ({data}) => {
|
||
if (data.code === 0) {
|
||
showSuccess('保存成功')
|
||
} else {
|
||
showDanger(data.msg)
|
||
}
|
||
})
|
||
},
|
||
resetConfig() {
|
||
this.$confirm('确定要重置配置吗?', '提示', {
|
||
confirmButtonText: '确定',
|
||
cancelButtonText: '取消',
|
||
type: 'warning'
|
||
}).then(() => {
|
||
// 重置表单
|
||
this.form = {
|
||
name: "",
|
||
timbre: "",
|
||
introduction: "",
|
||
prompt: "",
|
||
model: ""
|
||
}
|
||
this.$message.success('配置已重置')
|
||
}).catch(() => {
|
||
})
|
||
},
|
||
// 处理选择模板的逻辑
|
||
selectTemplate(template) {
|
||
Object.assign(this.form,{
|
||
agentCode: template.agentCode,
|
||
llmModelId: template.llmModelId,
|
||
asrModelId: template.asrModelId,
|
||
vadModelId: template.vadModelId,
|
||
ttsModelId: template.ttsModelId,
|
||
ttsVoiceId: template.ttsVoiceId,
|
||
intentModelId: template.intentModelId,
|
||
memoryModelId: template.memoryModelId,
|
||
systemPrompt: template.systemPrompt
|
||
})
|
||
this.$message.success(`已选择模板:${template.agentName}`);
|
||
}
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style scoped>
|
||
.breadcrumbs{
|
||
padding: 20px 0 0 5px;
|
||
}
|
||
|
||
.welcome {
|
||
min-width: 900px;
|
||
min-height: 506px;
|
||
height: 100vh;
|
||
display: flex;
|
||
flex-direction: column;
|
||
background-image: url("@/assets/home/background.png");
|
||
background-size: cover;
|
||
/* 确保背景图像覆盖整个元素 */
|
||
background-position: center;
|
||
/* 从顶部中心对齐 */
|
||
-webkit-background-size: cover;
|
||
/* 兼容老版本WebKit浏览器 */
|
||
-o-background-size: cover;
|
||
/* 兼容老版本Opera浏览器 */
|
||
}
|
||
|
||
.audio-box {
|
||
flex: 1;
|
||
height: 37px;
|
||
border-radius: 20px;
|
||
border: 1px solid #e4e6ef;
|
||
}
|
||
|
||
.clear-btn {
|
||
width: 48px;
|
||
height: 19px;
|
||
background: #fd8383;
|
||
border-radius: 10px;
|
||
line-height: 19px;
|
||
font-size: 11px;
|
||
color: #fff;
|
||
cursor: pointer;
|
||
}
|
||
|
||
.clear-text {
|
||
color: #979db1;
|
||
font-size: 11px;
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 8px;
|
||
margin-left: 16px;
|
||
}
|
||
|
||
.template-item {
|
||
padding: 0 20px;
|
||
border-radius: 6px;
|
||
background: #e6ebff;
|
||
font-weight: 500;
|
||
font-size: 14px;
|
||
text-align: center;
|
||
color: #5778ff;
|
||
cursor: pointer;
|
||
transition: background-color 0.3s ease;
|
||
}
|
||
|
||
.template-item:hover {
|
||
background-color: #d0d8ff;
|
||
}
|
||
|
||
.save-btn,
|
||
.reset-btn {
|
||
width: 112px;
|
||
height: 37px;
|
||
border-radius: 18px;
|
||
line-height: 37px;
|
||
box-sizing: border-box;
|
||
cursor: pointer;
|
||
font-size: 11px
|
||
}
|
||
|
||
.save-btn {
|
||
border-radius: 18px;
|
||
background: #5778ff;
|
||
color: #fff;
|
||
}
|
||
|
||
.reset-btn {
|
||
border: 1px solid #adbdff;
|
||
background: #e6ebff;
|
||
color: #5778ff;
|
||
}
|
||
</style>
|
||
|