提交 aaaafc88 编写于 作者: W weixin_44463441

Auto Commit

上级 96df1ee4
// 提示词模板。在这里,你可以把一些背景信息告诉AI,也可以给AI提供一些问题的案例,方便AI更好的回答问题
const prompt_template = `
你现在扮演一个知识库助手,你需要遵守以下约定来回答用户的问题:
1. 回答问题时,需要参考用户提供的相关信息
2. 回答问题内容尽量内容简洁、思路清晰易理解
1. 回答问题时,需要参考下面提供的相关内容
2. 回答问题内容尽量内容简洁,不用提供过多的解释和说明
3. 回答问题文字格式尽量美观;
4. 回答问题时避免以,“回答:”,“答:”,这种开头
4. 系统内置了markdown引擎,你可以返回markdown格式内容
5. 回答问题时,尽量分要点罗列,方便理解。比如:1. xxx 2. xxx 3. xxx
以下为用户后续问题相关的内容:
以下是我搜索到可能和问题相关的内容:
{context}
`
......
......@@ -21,7 +21,6 @@ class InsCodeAI {
'Accept': 'application/json'
}
}).then(res => {
debugger
const token = res?.data??''
if (token) {
apiKey = token.trim()
......
......@@ -12,7 +12,7 @@ const getContextContent = (context, max_token=default_max_token) => {
tempContext = tempContext.replace(regex, ' ');
if (tempContext.length + contextContent.length < max_token) {
contextContent = contextContent + '\n' + tempContext
contextContent = contextContent + '\n【引用' + (id + 1) + '' + tempContext
}
}
......
......@@ -17,7 +17,6 @@ class RepEs {
'Accept': 'application/json'
}
}).then(res => {
debugger
const token = res?.data??''
if (token) {
this.token = token.trim()
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册