-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
34 changed files
with
395 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
### Fast GPT V4.4.5 | ||
|
||
1. 优化 - Api Key 使用。增加别名、额度限制和过期时间。自带 appId,无需额外连接。 | ||
2. 去除 - 限定词。目前旧应用仍生效,9/25 后全面去除,请及时替换。 | ||
3. 新增 - 引用模板/引用提示词设置,可以 DIY 引用内容的格式,从而更好的适配场景。[参考文档](https://doc.fastgpt.run/docs/use-cases/prompt/) | ||
4. [使用文档](https://doc.fastgpt.run/docs/intro/) | ||
5. [点击查看高级编排介绍文档](https://doc.fastgpt.run/docs/workflow) | ||
6. [点击查看商业版](https://doc.fastgpt.run/docs/commercial/) | ||
1. 新增 - 下一步指引选项,可以通过模型生成 3 个预测问题。 | ||
2. 新增 - 分享链接 hook 身份校验。 | ||
3. 新增 - Api Key 使用。增加别名、额度限制和过期时间。自带 appId,无需额外连接。 | ||
4. 去除 - 限定词。目前旧应用仍生效,9/25 后全面去除,请及时替换。 | ||
5. 新增 - 引用模板/引用提示词设置,可以 DIY 引用内容的格式,从而更好的适配场景。[参考文档](https://doc.fastgpt.run/docs/use-cases/prompt/) | ||
6. [使用文档](https://doc.fastgpt.run/docs/intro/) | ||
7. [点击查看高级编排介绍文档](https://doc.fastgpt.run/docs/workflow) | ||
8. [点击查看商业版](https://doc.fastgpt.run/docs/commercial/) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { GET, POST, PUT, DELETE } from '@/api/request'; | ||
import { CreateQuestionGuideProps } from './type'; | ||
|
||
export const postQuestionGuide = (data: CreateQuestionGuideProps, cancelToken: AbortController) => | ||
POST<string[]>('/core/ai/agent/createQuestionGuide', data, { cancelToken }); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { ChatCompletionRequestMessage } from '@fastgpt/core/aiApi/type'; | ||
|
||
export type CreateQuestionGuideProps = { | ||
messages: ChatCompletionRequestMessage[]; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.