From aaaafc886143fe6e5f866935e105d9609fd5ce67 Mon Sep 17 00:00:00 2001 From: weixin_44463441 Date: Wed, 24 Jan 2024 18:23:26 +0800 Subject: [PATCH] Auto Commit --- src/js/config.js | 7 ++++--- src/js/inscodeai.js | 1 - src/js/prompt.js | 2 +- src/js/repEs.js | 1 - 4 files changed, 5 insertions(+), 6 deletions(-) diff --git a/src/js/config.js b/src/js/config.js index ea1d72c..7804ef6 100644 --- a/src/js/config.js +++ b/src/js/config.js @@ -1,13 +1,14 @@ // 提示词模板。在这里,你可以把一些背景信息告诉AI,也可以给AI提供一些问题的案例,方便AI更好的回答问题 const prompt_template = ` 你现在扮演一个知识库助手,你需要遵守以下约定来回答用户的问题: -1. 回答问题时,需要参考用户提供的相关信息; -2. 回答问题内容尽量内容简洁、思路清晰易理解; +1. 回答问题时,需要参考下面提供的相关内容; +2. 回答问题内容尽量内容简洁,不用提供过多的解释和说明; 3. 回答问题文字格式尽量美观; +4. 回答问题时避免以,“回答:”,“答:”,这种开头 4. 系统内置了markdown引擎,你可以返回markdown格式内容 5. 回答问题时,尽量分要点罗列,方便理解。比如:1. xxx 2. xxx 3. xxx -以下为用户后续问题相关的内容: +以下是我搜索到可能和问题相关的内容: {context} ` diff --git a/src/js/inscodeai.js b/src/js/inscodeai.js index a6cd027..f8f7d65 100644 --- a/src/js/inscodeai.js +++ b/src/js/inscodeai.js @@ -21,7 +21,6 @@ class InsCodeAI { 'Accept': 'application/json' } }).then(res => { - debugger const token = res?.data??'' if (token) { apiKey = token.trim() diff --git a/src/js/prompt.js b/src/js/prompt.js index 73a5b76..904f51e 100644 --- a/src/js/prompt.js +++ b/src/js/prompt.js @@ -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 } } diff --git a/src/js/repEs.js b/src/js/repEs.js index 2af6971..53e6e13 100644 --- a/src/js/repEs.js +++ b/src/js/repEs.js @@ -17,7 +17,6 @@ class RepEs { 'Accept': 'application/json' } }).then(res => { - debugger const token = res?.data??'' if (token) { this.token = token.trim() -- GitLab