Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
赵月辉
/
fastgpt-migrated
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Unverified
Commit
b7a10bff
authored
Jan 18, 2026
by
Archer
Committed by
GitHub
Jan 18, 2026
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
perf: remove request invalid field (#6283)
parent
15f8e704
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
2 deletions
+6
-2
document/content/docs/upgrading/4-14/4145.mdx
+1
-1
document/content/docs/upgrading/4-14/4146.mdx
+1
-0
document/data/doc-last-modified.json
+1
-1
packages/service/core/ai/llm/utils.ts
+3
-0
No files found.
document/content/docs/upgrading/4-14/4145.mdx
View file @
b7a10bff
---
title: 'V4.14.5'
title: 'V4.14.5
(包含升级脚本)
'
description: 'FastGPT V4.14.5 更新说明'
---
...
...
document/content/docs/upgrading/4-14/4146.mdx
View file @
b7a10bff
...
...
@@ -12,6 +12,7 @@ description: 'FastGPT V4.14.6 更新说明'
1. 工作流触摸板移动时,遇到输入框后会被强制阻拦。
2. 工作流粘贴节点,精确按鼠标位置粘贴。
3. 精确移除请求 LLM 时多余的系统字段,避免部分模型接口报错。
## 🐛 修复
...
...
document/data/doc-last-modified.json
View file @
b7a10bff
...
...
@@ -122,7 +122,7 @@
"document/content/docs/upgrading/4-14/4142.mdx"
:
"2025-11-18T19:27:14+08:00"
,
"document/content/docs/upgrading/4-14/4143.mdx"
:
"2025-11-26T20:52:05+08:00"
,
"document/content/docs/upgrading/4-14/4144.mdx"
:
"2025-12-16T14:56:04+08:00"
,
"document/content/docs/upgrading/4-14/4145.mdx"
:
"2026-01-1
2T08:50:15
+08:00"
,
"document/content/docs/upgrading/4-14/4145.mdx"
:
"2026-01-1
3T19:11:02
+08:00"
,
"document/content/docs/upgrading/4-14/4146.mdx"
:
"2026-01-12T21:07:44+08:00"
,
"document/content/docs/upgrading/4-8/40.mdx"
:
"2025-08-02T19:38:37+08:00"
,
"document/content/docs/upgrading/4-8/41.mdx"
:
"2025-08-02T19:38:37+08:00"
,
...
...
packages/service/core/ai/llm/utils.ts
View file @
b7a10bff
...
...
@@ -230,6 +230,9 @@ export const loadRequestMessages = async ({
const
result
=
(
await
Promise
.
all
(
content
.
map
(
async
(
item
)
=>
{
// Remove system filed
delete
item
.
key
;
if
(
item
.
type
===
'text'
)
{
// If it is array, not need to parse image
if
(
item
.
text
)
return
item
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment