mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-29 01:40:51 +00:00
@@ -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",
|
||||
|
@@ -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,
|
||||
|
@@ -1,6 +1,6 @@
|
||||
---
|
||||
title: "问题优化(已合并到知识库搜索)"
|
||||
description: "问题优化模块介绍和使用"
|
||||
title: "问题补全(已合并到知识库搜索)"
|
||||
description: "问题补全模块介绍和使用"
|
||||
icon: "input"
|
||||
draft: false
|
||||
toc: true
|
||||
@@ -23,7 +23,7 @@ weight: 364
|
||||
|
||||

|
||||
|
||||
用户在提问“第二点是什么”的时候,只会去知识库里查找“第二点是什么”,压根查不到内容。实际上需要查询的是“QA结构是什么”。因此我们需要引入一个【问题优化】模块,来对用户当前的问题进行补全,从而使得知识库搜索能够搜索到合适的内容。使用补全后效果如下:
|
||||
用户在提问“第二点是什么”的时候,只会去知识库里查找“第二点是什么”,压根查不到内容。实际上需要查询的是“QA结构是什么”。因此我们需要引入一个【问题补全】模块,来对用户当前的问题进行补全,从而使得知识库搜索能够搜索到合适的内容。使用补全后效果如下:
|
||||
|
||||

|
||||
|
||||
|
Reference in New Issue
Block a user