fix prediction
This commit is contained in:
@@ -27,7 +27,7 @@ const newSessionMe = ref<Participant>({
|
||||
tone: TONE_REGISTER_OPTIONS[3].value // 礼貌随和
|
||||
});
|
||||
const newSessionPartner = ref<Participant>({
|
||||
name: '同事',
|
||||
name: '对方',
|
||||
gender: 'Female',
|
||||
language: LANGUAGES[4], // 西班牙语
|
||||
tone: 'Auto-detect'
|
||||
@@ -288,8 +288,7 @@ onUnmounted(() => window.removeEventListener('click', handleGlobalClick));
|
||||
</div>
|
||||
</div>
|
||||
<div class="flex flex-col">
|
||||
<span class="text-sm font-bold dark:text-slate-200">{{ activeSession.partner.name }}</span>
|
||||
<span class="text-[10px] text-slate-400">正在与你说 {{ activeSession.partner.language.displayName }} 的同事对话</span>
|
||||
<span class="text-sm font-bold dark:text-slate-200">{{ activeSession!.partner.name }}</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="flex items-center gap-2">
|
||||
@@ -584,7 +583,7 @@ onUnmounted(() => window.removeEventListener('click', handleGlobalClick));
|
||||
<div class="grid grid-cols-2 gap-4">
|
||||
<div class="space-y-1.5">
|
||||
<label class="text-[10px] font-bold text-slate-400 uppercase">姓名</label>
|
||||
<input v-model="newSessionPartner.name" type="text" placeholder="同事姓名" class="w-full px-4 py-2.5 bg-slate-50 dark:bg-slate-800 border dark:border-slate-700 rounded-xl outline-none focus:ring-2 focus:ring-blue-500/20 text-sm dark:text-slate-200" />
|
||||
<input v-model="newSessionPartner.name" type="text" placeholder="姓名" class="w-full px-4 py-2.5 bg-slate-50 dark:bg-slate-800 border dark:border-slate-700 rounded-xl outline-none focus:ring-2 focus:ring-blue-500/20 text-sm dark:text-slate-200" />
|
||||
</div>
|
||||
<div class="space-y-1.5">
|
||||
<label class="text-[10px] font-bold text-slate-400 uppercase">使用语言</label>
|
||||
|
||||
Reference in New Issue
Block a user