mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 01:33:05 +00:00
commit
efe37083d3
|
|
@ -49,7 +49,7 @@ export default {
|
|||
label: '提示词',
|
||||
placeholder: '请输入提示词',
|
||||
tooltip:
|
||||
'通过调整提示词内容,可以引导大模型聊天方向,该提示词会被固定在上下文的开头。可以使用变量:{data} 是携带知识库中已知信息;{question}是用户提出的问题。'
|
||||
'通过调整提示词内容,可以引导大模型聊天方向,该提示词会被固定在上下文的开头。可以使用变量:{data} 是携带知识库中已知信息;{question} 是用户提出的问题。'
|
||||
},
|
||||
multipleRoundsDialogue: '多轮对话',
|
||||
relatedKnowledgeBase: '关联知识库',
|
||||
|
|
|
|||
|
|
@ -145,7 +145,10 @@
|
|||
</div>
|
||||
<el-tooltip effect="dark" placement="right">
|
||||
<template #content>{{
|
||||
$t('views.application.applicationForm.form.prompt.tooltip')
|
||||
$t('views.application.applicationForm.form.prompt.tooltip', {
|
||||
data: '{data}',
|
||||
question: '{question}'
|
||||
})
|
||||
}}</template>
|
||||
<AppIcon iconName="app-warning" class="app-warning-icon"></AppIcon>
|
||||
</el-tooltip>
|
||||
|
|
|
|||
Loading…
Reference in New Issue