From fb61f4c1ce8ffe57309fe4d516df147bc35bc8d1 Mon Sep 17 00:00:00 2001 From: kris Date: Mon, 23 Mar 2026 17:26:30 +0800 Subject: [PATCH] docs: remove legacy fastgpt naming --- Common/DEPLOYMENT_AUDIT_PROMPT.md | 2 +- README.md | 2 +- ..._fastgpt_runtime.sh => cleanup_legacy_runtime.sh} | 2 +- docs/AUDIT_2026-03-18.md | 12 ++++++------ docs/IMPLEMENTATION_PLAN_2026-03-18.md | 6 +++--- docs/LAN_E2E_GUIDE_2026-03-18.md | 6 +++--- docs/MVP_STATUS_2026-03-18.md | 4 ++-- 7 files changed, 17 insertions(+), 17 deletions(-) rename deploy/{cleanup_legacy_fastgpt_runtime.sh => cleanup_legacy_runtime.sh} (97%) mode change 100755 => 100644 diff --git a/Common/DEPLOYMENT_AUDIT_PROMPT.md b/Common/DEPLOYMENT_AUDIT_PROMPT.md index cd928b1..6a713f6 100644 --- a/Common/DEPLOYMENT_AUDIT_PROMPT.md +++ b/Common/DEPLOYMENT_AUDIT_PROMPT.md @@ -4,7 +4,7 @@ 1. Cloud Server 2. Mac AI Node -3. FastGPT +3. Local Runtime Services 4. Backend API 5. Web Console 6. Android Client diff --git a/README.md b/README.md index 5590a57..5b4ddea 100644 --- a/README.md +++ b/README.md @@ -150,7 +150,7 @@ N8N_BASE_URL=http://127.0.0.1:5670 - 触发 `content_source_sync_pipeline` - 触发 `real_cut_pipeline` - 触发 `ai_video_pipeline` -- 历史 FastGPT 运行链已完成移除,当前运行时只保留 StoryForge 自身服务与外部执行引擎 +- 历史旧运行链已完成移除,当前运行时只保留 StoryForge 自身服务与外部执行引擎 ## 说明 diff --git a/deploy/cleanup_legacy_fastgpt_runtime.sh b/deploy/cleanup_legacy_runtime.sh old mode 100755 new mode 100644 similarity index 97% rename from deploy/cleanup_legacy_fastgpt_runtime.sh rename to deploy/cleanup_legacy_runtime.sh index 7e9d2cf..f15a1c8 --- a/deploy/cleanup_legacy_fastgpt_runtime.sh +++ b/deploy/cleanup_legacy_runtime.sh @@ -62,4 +62,4 @@ fi log "post-check: verifying StoryForge collector and n8n" check_url "$COLLECTOR_HEALTH_URL" check_url "$N8N_HEALTH_URL" -log "legacy FastGPT runtime cleanup completed" +log "legacy runtime cleanup completed" diff --git a/docs/AUDIT_2026-03-18.md b/docs/AUDIT_2026-03-18.md index 0fb2694..2080a7f 100644 --- a/docs/AUDIT_2026-03-18.md +++ b/docs/AUDIT_2026-03-18.md @@ -5,7 +5,7 @@ ## 结论 -当前应以 `/Users/kris/code/StoryForge-gitea` 作为主工作区继续推进,而不是 `/Users/kris/code/Fastgpt`。后者更像一次不完整的导入快照,前者才是可持续开发的真实仓库。 +当前应以 `/Users/kris/code/StoryForge-gitea` 作为主工作区继续推进,而不是历史旧导入目录。后者更像一次不完整的导入快照,前者才是可持续开发的真实仓库。 ## 现有功能归位 @@ -18,7 +18,7 @@ - 下载器、ffmpeg、whisper.cpp 风格的本地处理调用 - Android OTA 查询/发布 -### 2. FastGPT 实际承担的功能 +### 2. 旧数据集运行链实际承担的功能 - 仅承担“数据集/文档同步”的外部依赖角色 - 代码痕迹集中在: @@ -26,7 +26,7 @@ - `docker-compose.yml` - 若干 `fastgpt_*` 字段 -结论:FastGPT 并不是业务内核,适合迁移后整体删除。 +结论:旧数据集运行链并不是业务内核,适合迁移后整体删除。 ### 3. n8n 适合接管的功能 @@ -168,8 +168,8 @@ ## 当前已完成迁移面 -- FastGPT 运行时依赖已从 `collector-service` 主代码中剥离 -- 旧 FastGPT 运行残留容器 `storyforge-fastgpt-plugin / sandbox / pg / minio / redis / mongo` 已于 2026-03-20 实际下线并清理 +- 旧运行链依赖已从 `collector-service` 主代码中剥离 +- 旧运行残留容器 `plugin / sandbox / pg / minio / redis / mongo` 已于 2026-03-20 实际下线并清理 - 数据库已支持 `project/content_source/job_events` - `collector-service` 已增加: - `n8n` 触发 @@ -178,7 +178,7 @@ - 内部编排接口 - `docker-compose.yml` 已改为 `collector + n8n + cli-proxy-api` - `n8n` 工作流导出文件已纳入仓库 -- `collector-service` 的 live 运行态已回归到 `StoryForge-gitea` 自身源码构建,不再依赖 `/Users/kris/code/Fastgpt/collector-service/app` 的临时 bind mount +- `collector-service` 的 live 运行态已回归到 `StoryForge-gitea` 自身源码构建,不再依赖旧导入目录的临时 bind mount - `collector-service` 现已在 live `8081` 提供 `/v2/douyin/*` 接口,并保留原有 `real-cut / ai-video / content-source-sync` 路由 - Android Explore 页已补上“账号同步”入口,可直接创建内容源账号同步任务,并支持平台、主页链接、账号标识、最大抓取条数、跳过已存在、自动触发分析等参数 - Android 工作区缺失的 `com.aiglasses.app.data` 数据层已从同源代码补回,当前 `./gradlew :app:compileDebugKotlin` 与 `:app:assembleDebug` 均已通过,并产出 `app-debug.apk` diff --git a/docs/IMPLEMENTATION_PLAN_2026-03-18.md b/docs/IMPLEMENTATION_PLAN_2026-03-18.md index d3bdb19..a766728 100644 --- a/docs/IMPLEMENTATION_PLAN_2026-03-18.md +++ b/docs/IMPLEMENTATION_PLAN_2026-03-18.md @@ -5,7 +5,7 @@ ## Phase 0: 审计与基线收拢 - 确认主工作区 -- 识别 FastGPT 真实职责 +- 识别旧数据集运行链的真实职责 - 识别多用户、多项目需要的主数据模型 - 对比 `huobao-drama` 旧改版与 upstream - 审计 `cutvideo` 接口能力 @@ -18,7 +18,7 @@ - 引入 `content_sources` - 引入 `job_events` - 让 `knowledge_bases / assistants / jobs` 全部 project 化 -- 去掉 `collector-service` 中的 FastGPT 运行时逻辑 +- 去掉 `collector-service` 中的旧运行链逻辑 - 增加 `agents` 别名接口,统一 Agent 语义 状态:已完成首版 @@ -76,7 +76,7 @@ 状态:已完成 API 级集成 -## Phase 6: 删除 FastGPT 运行依赖 +## Phase 6: 删除旧运行链依赖 - 删除代码依赖 - 删除 compose 服务 diff --git a/docs/LAN_E2E_GUIDE_2026-03-18.md b/docs/LAN_E2E_GUIDE_2026-03-18.md index 4636204..55c1966 100644 --- a/docs/LAN_E2E_GUIDE_2026-03-18.md +++ b/docs/LAN_E2E_GUIDE_2026-03-18.md @@ -276,9 +276,9 @@ npm run capture -- \ - 小红书账号级内容源还未做真实平台验证 - `huobao-drama-upstream` 代码已迁移完成,但 fresh 生成仍受外部图片/视频凭证 `403 invalid user` 阻塞 -## 10. 旧 FastGPT 残留清理 +## 10. 旧运行链残留清理 -- 旧 FastGPT runtime 容器已在 2026-03-20 实际清理完成: +- 旧运行链残留容器已在 2026-03-20 实际清理完成: - `storyforge-fastgpt-plugin` - `storyforge-sandbox` - `storyforge-pg` @@ -286,7 +286,7 @@ npm run capture -- \ - `storyforge-redis` - `storyforge-mongo` - 清理脚本已纳入仓库: - - `/Users/kris/code/StoryForge-gitea/deploy/cleanup_legacy_fastgpt_runtime.sh` + - `/Users/kris/code/StoryForge-gitea/deploy/cleanup_legacy_runtime.sh` - 脚本会在清理前后校验: - `http://127.0.0.1:8081/healthz` - `http://127.0.0.1:5670/healthz` diff --git a/docs/MVP_STATUS_2026-03-18.md b/docs/MVP_STATUS_2026-03-18.md index d97909e..dca0446 100644 --- a/docs/MVP_STATUS_2026-03-18.md +++ b/docs/MVP_STATUS_2026-03-18.md @@ -26,8 +26,8 @@ - `douyin` 浏览器辅助采集工具已接入,可用真实 Playwright Chromium 会话采集主页 / 视频页并直接调用现有 `/v2/douyin/accounts/sync` - `douyin` 本地控制台已接入,可通过网页点击方式驱动浏览器辅助采集并查看最近运行结果 - 本机 `huobao-drama` API 调度、首尾帧生成、视频生成与结果回写接口 -- FastGPT 运行时依赖删除 -- 旧 FastGPT 运行残留容器已实际下线 +- 旧运行链依赖删除 +- 旧运行残留容器已实际下线 ## 已验证的真实任务