k88936
|
bb3f8afe2a
|
修复 Direct 实时回复重复渲染
Project CI / Repository checks (pull_request) Successful in 3m27s
Project CI / Frontend tests (pull_request) Successful in 3m59s
Project CI / Backend tests (pull_request) Successful in 15m18s
Project CI / Native shell tests (pull_request) Successful in 20m28s
避免 Direct 模式在执行卡与独立消息区重复显示实时回复
保留非 Direct 模式的独立实时消息展示
|
2026-09-08 10:25:57 +08:00 |
|
k88936
|
7f5f63401e
|
Merge branch 'master' into feat/agc-markdown-render
Project CI / Native shell tests (pull_request) Failing after 4m55s
Project CI / Backend tests (pull_request) Successful in 6m26s
Project CI / Repository checks (pull_request) Failing after 2m13s
Project CI / Frontend tests (pull_request) Failing after 1m57s
|
2026-09-07 17:26:34 +08:00 |
|
suzmii
|
e15e3b455f
|
修复AGC大上下文请求体限制 (#295)
Project CI / Repository checks (push) Successful in 3m12s
Project CI / Frontend tests (push) Successful in 3m21s
Project CI / Backend tests (push) Successful in 7m42s
Project CI / Native shell tests (push) Successful in 20m14s
Project CI / Frontend tests (pull_request) Successful in 50m43s
Project CI / Repository checks (pull_request) Successful in 20m21s
Project CI / Backend tests (pull_request) Successful in 6m18s
Project CI / Native shell tests (pull_request) Successful in 18m19s
## 背景与问题
AGC(AI 游戏创作智能体 App)Direct Codex 模式在携带图片工具结果等大上下文调用 LLM 时,`/api/llm/responses` 与 `/api/llm/chat/completions` 会命中 Axum 默认 **2 MiB** 请求体上限,直接被 413 拒绝,大上下文任务无法执行;同时 Codex app-server 的 failed turn 未把上游 413 映射为稳定错误分类,前端只能显示笼统的“其他错误”,无法引导用户处理。
## 改动内容
**1. api-server(server-rs)**
- 新增常量 `LLM_REQUEST_MAX_BODY_BYTES = 32 MiB`,作为两个 LLM 代理路由的正式请求体上限;
- 两个路由显式配置 `DefaultBodyLimit::max(32 MiB)`,避免 Axum 默认 2 MiB 提前拒绝;handler 内保留超限检查,超过 32 MiB 仍返回 `413 PAYLOAD_TOO_LARGE`;
- 补充回归测试:>2 MiB 大上下文请求不再命中默认限制;超过 32 MiB 仍返回 413。
**2. AGC 壳(apps/ai-game-creator-shell)**
- `codex_app_server` 错误映射:上游/连接层 HTTP 413、`PAYLOAD_TOO_LARGE`、`provider request too large` 等统一映射为稳定分类 `codex-app-server-error:request-too-large`,不再落入 `other` 或误判为权限/安全策略错误;
- 前端新增用户可见文案“模型请求体过大,请减少参考图或上下文后重试”,并补充单测断言。
**3. 文档**
- 【技术方案】AI游戏创作智能体App实施计划-2026-06-24.md 补充“2026-09-06 AGC LLM 代理请求体合同”:明确 32 MiB 上限、必须显式配置 `DefaultBodyLimit`、413 映射规则与用户文案。
## 验证
- `cargo test -p api-server llm_routes_accept_large_context_bodies_beyond_axum_default` 通过
- `cargo test -p api-server llm_responses_rejects_bodies_above_explicit_limit` 通过
- `cargo test ... ai-game-creator-shell ... codex_app_server_failed_turn_maps_request_too_large_details` 通过
- `npm run test -- apps/ai-game-creator-shell/tests/agentRuntimeModel.test.ts`(27 通过)
全量 workspace 测试与 CI 门禁待推送后由 CI 覆盖。
Reviewed-on: #295
Reviewed-by: 段舒康 <kdletters@qq.com>
Co-authored-by: 董羽秦 <suzmii@qq.com>
Co-committed-by: 董羽秦 <suzmii@qq.com>
|
2026-09-07 17:05:42 +08:00 |
|
k88936
|
e6b2c5eb46
|
Merge branch 'master' into feat/agc-markdown-render
Project CI / Native shell tests (pull_request) Failing after 5m31s
Project CI / Backend tests (pull_request) Successful in 7m0s
Project CI / Repository checks (pull_request) Failing after 2m14s
Project CI / Frontend tests (pull_request) Failing after 1m58s
|
2026-09-07 15:44:04 +08:00 |
|
k88936
|
964290c641
|
优化错误报告 (#286)
Project CI / Native shell tests (push) Successful in 21m3s
Project CI / Repository checks (push) Successful in 2m37s
Project CI / Frontend tests (push) Successful in 2m41s
Project CI / Backend tests (push) Successful in 7m2s
样式
before:


after:


逻辑:
每次打开报告modal会再次查询队列中的错误
<video src="attachments/6d9d9bd7-5b7b-4a05-a7c3-ca64b6fb77f3" title="2026-09-05 19-46-02.mp4" controls></video>
---------
Co-authored-by: 段舒康 <kdletters@qq.com>
Reviewed-on: http://192.168.35.82/git/GenarrativeAI/Genarrative/pulls/286
Reviewed-by: 段舒康 <kdletters@qq.com>
Co-authored-by: 王德宇 <kvtodev@outlook.com>
Co-committed-by: 王德宇 <kvtodev@outlook.com>
|
2026-09-07 15:17:21 +08:00 |
|
k88936
|
6fb2f56faf
|
修复聊天 Markdown 列表渲染
Project CI / Repository checks (pull_request) Has been cancelled
Project CI / Native shell tests (pull_request) Has been cancelled
Project CI / Frontend tests (pull_request) Has been cancelled
Project CI / Backend tests (pull_request) Has been cancelled
保留有序列表的起始编号属性
区分列表项首段与后续段落样式
补充列表编号和多段落回归测试
|
2026-09-07 11:35:16 +08:00 |
|
k88936
|
e428d1345b
|
Merge remote-tracking branch 'origin/master' into feat/agc-markdown-render
# Conflicts:
# apps/ai-game-creator-shell/src/features/project-workspace/ProjectSupervisorView.tsx
# apps/ai-game-creator-shell/tests/appSurface/project-preview/preview-shortcuts/assert-project-and-design-shortcuts.ts
# docs/technical/【技术方案】AI游戏创作智能体App实施计划-2026-06-24.md
|
2026-09-07 11:04:17 +08:00 |
|
lhk229
|
60fbee2353
|
修复设置页重新出现连接与工具 (#287)
Project CI / Repository checks (pull_request) Failing after 10s
Project CI / Frontend tests (pull_request) Successful in 3m3s
Project CI / Backend tests (pull_request) Failing after 26s
Project CI / Native shell tests (pull_request) Successful in 20m54s
Project CI / Repository checks (push) Successful in 4m37s
Project CI / Frontend tests (push) Successful in 5m31s
Project CI / Backend tests (push) Successful in 8m38s
Project CI / Native shell tests (push) Successful in 20m0s
移除运行时配置中的连接与工具入口及 External Editor 字段
更新 AppSurface 回归断言,确保普通客户端不展示该入口
Reviewed-on: http://192.168.35.82/git/GenarrativeAI/Genarrative/pulls/287
Reviewed-by: 段舒康 <kdletters@qq.com>
Co-authored-by: Linghong <ink29535@proton.me>
Co-committed-by: Linghong <ink29535@proton.me>
|
2026-09-06 19:47:33 +08:00 |
|
kdletters
|
2975062c69
|
Merge pull request 'AGC 官方 LLM Router 账号链路与流式联网输出' (#242) from feat/agc-llm-router-official-chain into master
Project CI / Repository checks (push) Successful in 3m22s
Project CI / Frontend tests (push) Successful in 3m16s
Project CI / Backend tests (push) Successful in 6m29s
Project CI / Native shell tests (push) Successful in 18m25s
Reviewed-on: http://192.168.35.82/git/GenarrativeAI/Genarrative/pulls/242
|
2026-09-06 16:49:13 +08:00 |
|
suzmii
|
6166094a3c
|
修复AGC配置测试字段
Project CI / Repository checks (pull_request) Successful in 2m46s
Project CI / Frontend tests (pull_request) Successful in 2m55s
Project CI / Backend tests (pull_request) Successful in 7m6s
Project CI / Native shell tests (pull_request) Successful in 18m3s
同步配置测试夹具使用 selected_model_id
移除已删除的 model_profiles 与 selected_model_profile_id 字段
|
2026-09-06 01:16:48 +08:00 |
|
suzmii
|
736a1b6ac6
|
接入 LLM Router 累计额度结算
Project CI / Repository checks (pull_request) Successful in 2m36s
Project CI / Frontend tests (pull_request) Successful in 3m15s
Project CI / Backend tests (pull_request) Successful in 7m35s
Project CI / Native shell tests (pull_request) Failing after 7m43s
按 Router used_quota 累计值与首次基线结算泥点
新增原子 checkpoint 事务及 llm_router_consume 钱包流水
同步额度查询校验、前端展示、生成绑定和技术文档
|
2026-09-06 00:36:31 +08:00 |
|
suzmii
|
78f547d26d
|
Merge remote-tracking branch 'origin/master' into feat/agc-llm-router-official-chain
Project CI / Repository checks (pull_request) Successful in 2m38s
Project CI / Frontend tests (pull_request) Successful in 3m46s
Project CI / Backend tests (pull_request) Successful in 6m35s
Project CI / Native shell tests (pull_request) Failing after 8m14s
# Conflicts:
# apps/ai-game-creator-shell/tests/appSurface/runtime-settings.suite.ts
|
2026-09-05 20:08:43 +08:00 |
|
suzmii
|
0b9fb40108
|
Merge remote-tracking branch 'origin/master' into feat/agc-llm-router-official-chain
Project CI / Repository checks (pull_request) Has been cancelled
Project CI / Frontend tests (pull_request) Has been cancelled
Project CI / Backend tests (pull_request) Has been cancelled
Project CI / Native shell tests (pull_request) Has been cancelled
# Conflicts:
# apps/ai-game-creator-shell/scripts/check-config.mjs
# apps/ai-game-creator-shell/src/features/runtime-config/RuntimeConfigDialog.tsx
# apps/ai-game-creator-shell/tests/appSurface/runtime-settings.suite.ts
|
2026-09-05 20:03:25 +08:00 |
|
kdletters
|
c4f344678f
|
收窄设置页删除改动
Project CI / Repository checks (push) Successful in 2m36s
Project CI / Frontend tests (push) Successful in 3m4s
Project CI / Backend tests (push) Successful in 8m42s
Project CI / Native shell tests (push) Successful in 20m38s
移除多余的页面回归门禁
清理已删除入口的冗余测试断言
|
2026-09-05 20:01:02 +08:00 |
|
suzmii
|
34e3f70409
|
补充服务启动配置校验并优化模型菜单
Project CI / Repository checks (pull_request) Has been cancelled
Project CI / Frontend tests (pull_request) Has been cancelled
Project CI / Backend tests (pull_request) Has been cancelled
Project CI / Native shell tests (pull_request) Has been cancelled
启动时校验 LLM Router 地址、模型和相关密钥配置
将刷新操作移入模型展开菜单并修复菜单样式覆盖
更新启动运维文档与定向测试
|
2026-09-05 19:48:27 +08:00 |
|
suzmii
|
4f3f0f24ff
|
接入AGC后台模型目录与对话模型选择
新增后台 AGC 模型目录、别名、启停和默认项管理
客户端设置页恢复原状,对话框右下角按别名选择模型
服务端按稳定模型标识映射并校验实际模型白名单
修复 AGC 配套后端端口漂移、启动等待和 SpacetimeDB 版本检查
补充迁移、文档、启动与模型选择测试
|
2026-09-05 19:10:49 +08:00 |
|
kdletters
|
524e2f0f4f
|
删除连接与工具设置页
Project CI / Repository checks (push) Successful in 2m34s
Project CI / Frontend tests (push) Successful in 3m3s
Project CI / Backend tests (push) Successful in 6m53s
Project CI / Native shell tests (push) Successful in 17m53s
移除运行设置中的连接与工具导航及页面内容
更新运行设置测试以校验该入口已删除
同步配置门禁,防止已删除页面重新出现
|
2026-09-05 17:39:05 +08:00 |
|
suzmii
|
76f0c8e58e
|
Merge branch 'master' into feat/agc-llm-router-official-chain
Project CI / Repository checks (pull_request) Successful in 3m39s
Project CI / Frontend tests (pull_request) Successful in 4m0s
Project CI / Backend tests (pull_request) Successful in 8m3s
Project CI / Native shell tests (pull_request) Successful in 19m58s
|
2026-09-04 19:07:08 +08:00 |
|
k88936
|
95b7b6e99a
|
以代码块回显项目文件正文
Project CI / Frontend tests (pull_request) Successful in 4m36s
Project CI / Repository checks (pull_request) Successful in 4m1s
Project CI / Backend tests (pull_request) Successful in 7m53s
Project CI / Native shell tests (pull_request) Successful in 19m30s
将聊天侧 /read 文件内容包装为安全 pre/code
补充反引号围栏处理并更新项目文件读取断言
同步工作台 PRD 与 AGC 实施计划的安全渲染约定
|
2026-09-04 16:56:34 +08:00 |
|
k88936
|
1d983c06cb
|
Merge branch 'master' into feat/agc-markdown-render
Project CI / Backend tests (pull_request) Successful in 6m48s
Project CI / Repository checks (pull_request) Failing after 3m0s
Project CI / Frontend tests (pull_request) Failing after 3m8s
Project CI / Native shell tests (pull_request) Failing after 5m13s
|
2026-09-04 16:38:38 +08:00 |
|
k88936
|
f9e1e5d2a7
|
Fix/修复ui editor选择逻辑 (#270)
Project CI / Backend tests (push) Successful in 7m35s
Project CI / Repository checks (push) Successful in 3m2s
Project CI / Frontend tests (push) Successful in 3m24s
Project CI / Native shell tests (push) Successful in 18m52s
close #266
当前实现: 按下就重新选择
实际上应该: 松开而且没有发生拖动才重新选择
before:

after:

Reviewed-on: http://192.168.35.82/git/GenarrativeAI/Genarrative/pulls/270
Co-authored-by: 王德宇 <kvtodev@outlook.com>
Co-committed-by: 王德宇 <kvtodev@outlook.com>
|
2026-09-04 16:30:43 +08:00 |
|
k88936
|
dee5753543
|
修正 Markdown 代码块 HTML 转义
Project CI / Repository checks (pull_request) Failing after 2m46s
Project CI / Frontend tests (pull_request) Failing after 2m53s
Project CI / Backend tests (pull_request) Has been cancelled
Project CI / Native shell tests (pull_request) Failing after 5m30s
移除整段 Markdown 的 HTML 预转义并继续使用 skipHtml
补充行内与围栏代码 HTML 字面量回归测试
同步项目开发工作台安全 Markdown 渲染约定
|
2026-09-04 16:27:57 +08:00 |
|
k88936
|
7b3b050b47
|
复用项目预览消息气泡断言
统一 Agent 对话与私有记忆消息的气泡查找
移除重复的空值断言并保留明确错误信息
|
2026-09-04 16:17:39 +08:00 |
|
k88936
|
88a0b60d9a
|
收紧预览 Trace 标题断言
将 Trace 标题匹配限定在段落元素内
兼容 Markdown 多行段落并避免重复文本命中
|
2026-09-04 16:16:23 +08:00 |
|
k88936
|
16879ab390
|
记录 Markdown 渲染失败信号
在错误边界捕获时记录脱敏错误类型
保留消息正文回退且不输出敏感内容
|
2026-09-04 16:09:52 +08:00 |
|
suzmii
|
87c0cbd06d
|
修复 Provider 代理错误外发 AGC 主站客户端标记
Project CI / Repository checks (pull_request) Successful in 3m13s
Project CI / Frontend tests (pull_request) Successful in 3m34s
Project CI / Backend tests (pull_request) Successful in 7m43s
Project CI / Native shell tests (pull_request) Successful in 19m55s
仅 PlatformSession 的 /api/llm 主站路由携带 x-genarrative-client 标记
通用 Provider 与第三方凭据桥接不再自动附加该标记
补充主站路由代理的标记回归测试
|
2026-09-04 15:52:47 +08:00 |
|
k88936
|
1de48ad5a6
|
抽取项目对话文本展示助手
新增统一的项目总控对话文本解析助手
迁移三个工作区视图复用该助手
|
2026-09-04 15:34:05 +08:00 |
|
k88936
|
6591b04a56
|
修复纯聊天流式回复滚动
恢复 standalone supervisor 聊天的流式消息自动跟随
保留用户上移后的滚动位置
统一使用底部阈值判断是否继续跟随
|
2026-09-04 15:28:40 +08:00 |
|
suzmii
|
13639d9f8c
|
修复 AGC 运行时配置模型方案测试断言
Project CI / Repository checks (pull_request) Successful in 4m23s
Project CI / Frontend tests (pull_request) Successful in 5m11s
Project CI / Backend tests (pull_request) Successful in 7m25s
Project CI / Native shell tests (pull_request) Failing after 15m15s
将推理档断言迁移到模型方案管理面板的推理档位选择器
补充持久化测试 fixture 的 modelProfiles 与选中方案字段
同步保存回写断言中的模型方案结构
|
2026-09-04 15:19:01 +08:00 |
|
suzmii
|
020f7d7a7a
|
修复 Router 凭据并发一致性问题
Project CI / Repository checks (pull_request) Failing after 8m28s
Project CI / Backend tests (pull_request) Has been cancelled
Project CI / Native shell tests (pull_request) Has been cancelled
Project CI / Frontend tests (pull_request) Has been cancelled
移除 Router Key 进程内 TTL 缓存,改为每次读取权威账号状态并即时解密当前密文
Router 账号写入改为同主键原地更新,避免 delete+insert 读取缺口
新增 owner/route 映射冲突校验,防止并发写入插入重复账号行
同步更新后端数据契约文档中的凭据读取语义
|
2026-09-04 14:08:16 +08:00 |
|
k88936
|
60a87a4303
|
Merge branch 'master' into feat/agc-markdown-render
Project CI / Repository checks (pull_request) Successful in 6m57s
Project CI / Frontend tests (pull_request) Successful in 7m9s
Project CI / Backend tests (pull_request) Successful in 14m52s
Project CI / Native shell tests (pull_request) Successful in 41m31s
|
2026-09-04 13:55:32 +08:00 |
|
suzmii
|
aa47fa833d
|
Merge remote-tracking branch 'origin/master' into feat/agc-llm-router-official-chain
|
2026-09-04 13:54:16 +08:00 |
|
suzmii
|
4bbef74859
|
feat: AGC 支持模型方案选择
新增 Router 模型目录接口并返回可用模型列表
客户端配置新增模型方案与当前选中方案字段
设置页新增模型方案卡片和管理弹层,支持方案名称、模型和推理强度
自定义下拉菜单圆角、遮罩层级与窗口边界定位,并隐藏滚动条
AGC 官方路由保留所选模型并携带客户端标记,由服务端校验后转发
补齐配置结构变更后的既有测试初始化字段
|
2026-09-04 13:52:00 +08:00 |
|
k88936
|
fd474724cb
|
修复流式 Markdown 错误边界恢复
Project CI / Repository checks (pull_request) Failing after 12s
Project CI / Backend tests (pull_request) Failing after 11s
Project CI / Frontend tests (pull_request) Has been cancelled
Project CI / Native shell tests (pull_request) Has been cancelled
累计文本变化时清除错误边界状态并重新尝试 Markdown 渲染。
新增首次渲染失败后随文本更新恢复的回归测试。
|
2026-09-04 13:37:14 +08:00 |
|
k88936
|
8c2a4fea64
|
补充标题层级回归测试
验证 H4 到 H6 的字号与字重样式
|
2026-09-04 13:26:07 +08:00 |
|
k88936
|
1ce50ab031
|
修正聊天标题层级字号
使用 Tailwind 重要性修饰覆盖全局标题样式
恢复 H1 到 H3 的清晰字号层级
|
2026-09-04 13:25:56 +08:00 |
|
k88936
|
11b137f9c0
|
修复列表编号与内容换行
避免消息保留空白规则把列表项内容推到下一行
补充有序列表同行显示断言
|
2026-09-04 13:21:58 +08:00 |
|
k88936
|
397e321a88
|
修复有序列表消息排版
区分有序与无序列表标记,避免有序项显示短横线
让列表项段落与文本保持同行
补充有序列表嵌套渲染回归测试
|
2026-09-04 13:18:26 +08:00 |
|
k88936
|
c46aab1922
|
修复聊天嵌套列表缩进
为 Markdown 无序列表按嵌套层级增加内边距
补充多层无序列表渲染回归测试
|
2026-09-04 13:14:05 +08:00 |
|
k88936
|
c58fee23b2
|
修复无语言代码围栏样式
将包含换行的无语言围栏内容识别为代码块。
新增回归测试,确保其使用块级代码样式而非内联样式。
|
2026-09-04 12:55:41 +08:00 |
|
k88936
|
da3033db21
|
修复聊天代码节点属性泄漏
从 react-markdown code 组件属性中剔除 node 元数据。
新增回归测试,确保渲染后的代码节点不输出 node 属性。
|
2026-09-04 12:54:03 +08:00 |
|
k88936
|
08ea5962ac
|
完善聊天 Markdown 测试兼容
调整消息断言以适配 Markdown 段落和列表结构
补充预览快捷键消息气泡查找工具
完善流式 Markdown 样式并同步组件测试
|
2026-09-04 12:27:22 +08:00 |
|
k88936
|
31c37534b4
|
完善聊天 Markdown 安全显示
为 Direct Codex 流式正文恢复可访问标签
将 HTML 标签转义为可见纯文本
保留 Markdown 内容安全渲染边界
|
2026-09-04 12:05:54 +08:00 |
|
k88936
|
c0d851c369
|
修复聊天 Markdown 纯文本链接兼容性
让链接和图片渲染为直接文本节点
避免既有消息文本查询被 Markdown 节点拆分
补充后续安全外链 TODO
|
2026-09-04 11:57:59 +08:00 |
|
k88936
|
c370f9b853
|
补充聊天 Markdown 渲染测试
覆盖 GFM、代码块和表格展示
覆盖用户纯文本与流式中间态
覆盖 HTML、链接和图片安全边界
|
2026-09-04 11:52:12 +08:00 |
|
k88936
|
dcdd13bc1c
|
接入项目聊天 Markdown 渲染
统一三个项目聊天视图的 assistant 消息展示
让 Direct Codex 流式回复复用 Markdown 组件
移除纯聊天视图的无条件滚动到底部行为
|
2026-09-04 11:50:05 +08:00 |
|
k88936
|
141eff203d
|
新增聊天 Markdown 消息组件
为 assistant 消息提供 GFM 与流式 Markdown 渲染
限制 HTML、链接和图片为纯文本展示
使用 Tailwind 内联样式并提供单条消息降级
|
2026-09-04 11:46:47 +08:00 |
|
lhk229
|
8d13e868bd
|
AGC 更新提示增加 X 关闭按钮 (#276)
Project CI / Frontend tests (push) Successful in 8m49s
Project CI / Repository checks (push) Successful in 8m50s
Project CI / Backend tests (push) Successful in 10m3s
Project CI / Native shell tests (push) Failing after 20m52s
## 变更内容
- 为 AGC 更新提示增加可访问的 X 关闭按钮。
- 复用现有 dismiss 逻辑,手动关闭后立即移除提示。
- 增加关闭按钮的 hover、禁用和图标样式。
## 验证
- npm --prefix apps/ai-game-creator-shell run typecheck
- npm exec vitest run apps/ai-game-creator-shell/tests/appUpdate.test.ts
- npm run check:encoding
- git diff --check
Reviewed-on: http://192.168.35.82/git/GenarrativeAI/Genarrative/pulls/276
Reviewed-by: 段舒康 <kdletters@qq.com>
Co-authored-by: 孔令弘 <ink29535@proton.me>
Co-committed-by: 孔令弘 <ink29535@proton.me>
|
2026-09-04 11:24:21 +08:00 |
|
k88936
|
95b08ac3e5
|
补充项目聊天 Markdown 渲染约定
记录三套项目聊天视图共享消息结构
明确 accumulatedText 流式正文与安全渲染边界
约定 Tailwind 内联样式和后续外链 TODO
|
2026-09-04 11:18:01 +08:00 |
|
suzmii
|
938c37ca1b
|
修复 AGC 本地 Provider Smoke 路由
Project CI / Repository checks (pull_request) Successful in 3m54s
Project CI / Frontend tests (pull_request) Successful in 5m1s
Project CI / Backend tests (pull_request) Successful in 8m26s
Project CI / Native shell tests (pull_request) Successful in 18m51s
允许显式 Debug E2E 开关使用 loopback Provider
为 smoke 子进程透传环境并启用 Debug E2E 开关
|
2026-09-03 23:27:54 +08:00 |
|