Toggle navigation
Toggle navigation
This project
Loading...
Sign in
万朱浩
/
Venue-Ops
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Doiiars
2025-11-05 15:28:14 +0800
Browse Files
Options
Browse Files
Download
Plain Diff
Committed by
GitHub
2025-11-05 15:28:14 +0800
Commit
9b055c6b4eba539eb456e247326d3b81f0d5c822
9b055c6b
2 parents
655a8ca8
efebdbd8
Merge pull request #127 from DoiiarX/fix-typo
修复文档问题
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
MindSpider/README.md
MindSpider/main.py
MindSpider/README.md
View file @
9b055c6
...
...
@@ -84,7 +84,7 @@ MindSpider/
```
mermaid
flowchart TB
Start[开始] --> CheckConfig{检查配置}
CheckConfig -->|配置无效| ConfigError[配置错误<br/>请检查
config.py
]
CheckConfig -->|配置无效| ConfigError[配置错误<br/>请检查
env中的环境变量
]
CheckConfig -->|配置有效| InitDB[初始化数据库]
InitDB --> BroadTopic[BroadTopicExtraction<br/>话题提取模块]
...
...
MindSpider/main.py
View file @
9b055c6
...
...
@@ -60,7 +60,7 @@ class MindSpider:
if
missing_configs
:
logger
.
error
(
f
"配置缺失: {', '.join(missing_configs)}"
)
logger
.
error
(
"请检查
config.py文件中的
配置信息"
)
logger
.
error
(
"请检查
.env文件中的环境变量
配置信息"
)
return
False
logger
.
info
(
"基础配置检查通过"
)
...
...
Please
register
or
login
to post a comment