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
772c1cde
authored
Feb 05, 2025
by
Archer
Committed by
GitHub
Feb 05, 2025
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove log (#3692)
parent
b6e441c5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
15 additions
and
16 deletions
+15
-16
docSite/content/zh-cn/docs/development/upgrading/4820.md
+2
-2
files/docker/docker-compose-milvus.yml
+4
-4
files/docker/docker-compose-pgvector.yml
+4
-4
files/docker/docker-compose-zilliz.yml
+4
-4
projects/app/src/service/core/app/workflow.ts
+1
-2
No files found.
docSite/content/zh-cn/docs/development/upgrading/4820.md
View file @
772c1cde
...
...
@@ -17,8 +17,8 @@ weight: 804
### 3. 更新镜像:
-
更新 fastgpt 镜像 tag: v4.8.20
-
更新 fastgpt-pro 商业版镜像 tag: v4.8.20
-
更新 fastgpt 镜像 tag: v4.8.20
-fix
-
更新 fastgpt-pro 商业版镜像 tag: v4.8.20
-fix
-
Sandbox 镜像无需更新
### 4. 运行升级脚本
...
...
files/docker/docker-compose-milvus.yml
View file @
772c1cde
...
...
@@ -114,15 +114,15 @@ services:
# fastgpt
sandbox
:
container_name
:
sandbox
image
:
ghcr.io/labring/fastgpt-sandbox:v4.8.20
# git
# image: registry.cn-hangzhou.aliyuncs.com/fastgpt/fastgpt-sandbox:v4.8.20 # 阿里云
image
:
ghcr.io/labring/fastgpt-sandbox:v4.8.20
-fix
# git
# image: registry.cn-hangzhou.aliyuncs.com/fastgpt/fastgpt-sandbox:v4.8.20
-fix
# 阿里云
networks
:
-
fastgpt
restart
:
always
fastgpt
:
container_name
:
fastgpt
image
:
ghcr.io/labring/fastgpt:v4.8.20
# git
# image: registry.cn-hangzhou.aliyuncs.com/fastgpt/fastgpt:v4.8.20 # 阿里云
image
:
ghcr.io/labring/fastgpt:v4.8.20
-fix
# git
# image: registry.cn-hangzhou.aliyuncs.com/fastgpt/fastgpt:v4.8.20
-fix
# 阿里云
ports
:
-
3000:3000
networks
:
...
...
files/docker/docker-compose-pgvector.yml
View file @
772c1cde
...
...
@@ -72,15 +72,15 @@ services:
# fastgpt
sandbox
:
container_name
:
sandbox
image
:
ghcr.io/labring/fastgpt-sandbox:v4.8.20
# git
# image: registry.cn-hangzhou.aliyuncs.com/fastgpt/fastgpt-sandbox:v4.8.20 # 阿里云
image
:
ghcr.io/labring/fastgpt-sandbox:v4.8.20
-fix
# git
# image: registry.cn-hangzhou.aliyuncs.com/fastgpt/fastgpt-sandbox:v4.8.20
-fix
# 阿里云
networks
:
-
fastgpt
restart
:
always
fastgpt
:
container_name
:
fastgpt
image
:
ghcr.io/labring/fastgpt:v4.8.20
# git
# image: registry.cn-hangzhou.aliyuncs.com/fastgpt/fastgpt:v4.8.20 # 阿里云
image
:
ghcr.io/labring/fastgpt:v4.8.20
-fix
# git
# image: registry.cn-hangzhou.aliyuncs.com/fastgpt/fastgpt:v4.8.20
-fix
# 阿里云
ports
:
-
3000:3000
networks
:
...
...
files/docker/docker-compose-zilliz.yml
View file @
772c1cde
...
...
@@ -53,15 +53,15 @@ services:
wait $$!
sandbox
:
container_name
:
sandbox
image
:
ghcr.io/labring/fastgpt-sandbox:v4.8.20
# git
# image: registry.cn-hangzhou.aliyuncs.com/fastgpt/fastgpt-sandbox:v4.8.20 # 阿里云
image
:
ghcr.io/labring/fastgpt-sandbox:v4.8.20
-fix
# git
# image: registry.cn-hangzhou.aliyuncs.com/fastgpt/fastgpt-sandbox:v4.8.20
-fix
# 阿里云
networks
:
-
fastgpt
restart
:
always
fastgpt
:
container_name
:
fastgpt
image
:
ghcr.io/labring/fastgpt:v4.8.20
# git
# image: registry.cn-hangzhou.aliyuncs.com/fastgpt/fastgpt:v4.8.20 # 阿里云
image
:
ghcr.io/labring/fastgpt:v4.8.20
-fix
# git
# image: registry.cn-hangzhou.aliyuncs.com/fastgpt/fastgpt:v4.8.20
-fix
# 阿里云
ports
:
-
3000:3000
networks
:
...
...
projects/app/src/service/core/app/workflow.ts
View file @
772c1cde
...
...
@@ -9,7 +9,6 @@ export const getChatModelNameListByModules = (nodes: StoreNodeItemType[]): strin
return
model
?
getLLMModel
(
model
)?.
name
:
''
;
})
.
filter
(
Boolean
);
console
.
log
(
JSON
.
stringify
(
nodes
,
null
,
2
),
'---='
);
console
.
log
(
modelList
,
'---='
);
return
Array
.
from
(
new
Set
(
modelList
));
};
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