Revert "sub plan page (#885)" (#886)

This reverts commit 443ad37b6a.
This commit is contained in:
Archer
2024-02-23 17:48:15 +08:00
committed by GitHub
parent 443ad37b6a
commit fd9b6291af
246 changed files with 4281 additions and 6286 deletions

View File

@@ -135,7 +135,7 @@ export default async function (ctx: FunctionContext) {
},
{
"key": "model",
"type": "selectLLMModel",
"type": "selectExtractModel",
"valueType": "string",
"label": "core.module.input.label.LLM",
"required": true,
@@ -264,7 +264,7 @@ export default async function (ctx: FunctionContext) {
},
{
"key": "model",
"type": "selectLLMModel",
"type": "selectChatModel",
"label": "core.module.input.label.aiModel",
"required": true,
"valueType": "string",
@@ -635,7 +635,7 @@ export default async function (ctx: FunctionContext) {
},
{
"key": "model",
"type": "selectLLMModel",
"type": "selectChatModel",
"label": "core.module.input.label.aiModel",
"required": true,
"valueType": "string",

View File

@@ -139,7 +139,7 @@ HTTP 模块允许你调用任意 GET/POST 类型的 HTTP 接口,从而实现
},
{
"key": "model",
"type": "selectLLMModel",
"type": "selectExtractModel",
"valueType": "string",
"label": "core.module.input.label.LLM",
"required": true,
@@ -401,7 +401,7 @@ HTTP 模块允许你调用任意 GET/POST 类型的 HTTP 接口,从而实现
},
{
"key": "model",
"type": "selectLLMModel",
"type": "selectCQModel",
"valueType": "string",
"label": "core.module.input.label.Classify model",
"required": true,
@@ -614,7 +614,7 @@ HTTP 模块允许你调用任意 GET/POST 类型的 HTTP 接口,从而实现
},
{
"key": "model",
"type": "selectLLMModel",
"type": "selectChatModel",
"label": "core.module.input.label.aiModel",
"required": true,
"valueType": "string",
@@ -835,7 +835,7 @@ HTTP 模块允许你调用任意 GET/POST 类型的 HTTP 接口,从而实现
},
{
"key": "model",
"type": "selectLLMModel",
"type": "selectExtractModel",
"valueType": "string",
"label": "core.module.input.label.LLM",
"required": true,

View File

@@ -1,6 +1,6 @@
---
title: "问题优化(已合并到知识库搜索)"
description: "问题优化模块介绍和使用"
title: "问题补全(已合并到知识库搜索)"
description: "问题补全模块介绍和使用"
icon: "input"
draft: false
toc: true
@@ -23,7 +23,7 @@ weight: 364
![](/imgs/coreferenceResolution2.jpg)
用户在提问“第二点是什么”的时候只会去知识库里查找“第二点是什么”压根查不到内容。实际上需要查询的是“QA结构是什么”。因此我们需要引入一个【问题优化】模块,来对用户当前的问题进行补全,从而使得知识库搜索能够搜索到合适的内容。使用补全后效果如下:
用户在提问“第二点是什么”的时候只会去知识库里查找“第二点是什么”压根查不到内容。实际上需要查询的是“QA结构是什么”。因此我们需要引入一个【问题补全】模块,来对用户当前的问题进行补全,从而使得知识库搜索能够搜索到合适的内容。使用补全后效果如下:
![](/imgs/coreferenceResolution3.jpg)