Commit f7544ea4 by Archer Committed by GitHub

4.8.10 test fix (#2517)

* fix: chat config load error

* prompt perf
parent a1a9a0b4
...@@ -4,6 +4,7 @@ export const Prompt_AgentQA = { ...@@ -4,6 +4,7 @@ export const Prompt_AgentQA = {
- 答案需详细完整,尽可能保留原文描述,可以适当扩展答案描述。 - 答案需详细完整,尽可能保留原文描述,可以适当扩展答案描述。
- 答案可以包含普通文字、链接、代码、表格、公示、媒体链接等 Markdown 元素。 - 答案可以包含普通文字、链接、代码、表格、公示、媒体链接等 Markdown 元素。
- 最多提出 50 个问题。 - 最多提出 50 个问题。
- 生成的问题和答案和源文本语言相同。
`, `,
fixedText: `请按以下格式整理学习成果: fixedText: `请按以下格式整理学习成果:
<Context> <Context>
......
...@@ -50,9 +50,11 @@ export const getAppLatestVersion = async (appId: string, app?: AppSchema) => { ...@@ -50,9 +50,11 @@ export const getAppLatestVersion = async (appId: string, app?: AppSchema) => {
const version = await MongoAppVersion.findOne({ const version = await MongoAppVersion.findOne({
appId, appId,
isPublish: true isPublish: true
}).sort({ })
time: -1 .sort({
}); time: -1
})
.lean();
if (version) { if (version) {
return { return {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment