Skip to content

Commit

Permalink
fix(query): extension prompt template (#2288)
Browse files Browse the repository at this point in the history
  • Loading branch information
zongzi531 authored Aug 8, 2024
1 parent d682a82 commit 067f3f4
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion packages/service/core/ai/functions/queryExtension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ import { chatValue2RuntimePrompt } from '@fastgpt/global/core/chat/adapt';
可以根据上下文,消除指代性问题以及扩展问题,利于检索。
*/

const defaultPrompt = `作为一个向量检索助手,你的任务是结合历史记录,从不同角度,为“原问题”生成个不同版本的“检索词”,从而提高向量检索的语义丰富度,提高向量检索的精度。生成的问题要求指向对象清晰明确,并与“原问题语言相同”。例如:
const defaultPrompt = `作为一个向量检索助手,你的任务是结合历史记录,从不同角度,为“原问题”生成个不同版本的“检索词”,从而提高向量检索的语义丰富度,提高向量检索的精度。生成的问题要求指向对象清晰明确,并与“原问题语言相同”。
下面的 <Example></Example> 标签对中的示例仅供你学习,请勿在无历史记录的情况下,引用示例中的词。
<Example>
历史记录:
"""
"""
Expand Down Expand Up @@ -86,7 +89,11 @@ A: Laf 是一个云函数开发平台。
"""
原问题: 它们有什么关系?
检索词: ["FastGPT和Laf有什么关系?","介绍下FastGPT","介绍下Laf"]
</Example>
----------------
我们开始吧!
历史记录:
"""
{{histories}}
Expand Down

0 comments on commit 067f3f4

Please sign in to comment.