diff --git a/frontend/src/views/admin/SettingsView.vue b/frontend/src/views/admin/SettingsView.vue index 9fb8da41..e56afe5f 100644 --- a/frontend/src/views/admin/SettingsView.vue +++ b/frontend/src/views/admin/SettingsView.vue @@ -1877,13 +1877,13 @@
{{ localText( - '切换 OpenAI 侧新增的高级调度开关,供当前分支实验性调度逻辑使用。', - 'Toggles the new OpenAI advanced scheduler flag for the experimental routing logic on this branch.' + '默认关闭。开启后仅影响本网关在 OpenAI 账号间的实验性调度选择逻辑,不代表上游 OpenAI 官方能力。', + 'Disabled by default. When enabled, this only changes the gateway\'s experimental account-selection policy for OpenAI traffic; it does not indicate an upstream OpenAI capability.' ) }}
diff --git a/frontend/src/views/admin/__tests__/SettingsView.spec.ts b/frontend/src/views/admin/__tests__/SettingsView.spec.ts index b6f8ab17..3541d994 100644 --- a/frontend/src/views/admin/__tests__/SettingsView.spec.ts +++ b/frontend/src/views/admin/__tests__/SettingsView.spec.ts @@ -472,4 +472,14 @@ describe('admin SettingsView payment visible method controls', () => { expect(showError).toHaveBeenCalled() expect(String(showError.mock.calls.at(-1)?.[0] ?? '')).toContain('支付来源') }) + + it('renders advanced scheduler copy as local experimental gateway policy', async () => { + const wrapper = mountView() + + await flushPromises() + + expect(wrapper.text()).toContain('OpenAI 实验调度策略') + expect(wrapper.text()).toContain('默认关闭。开启后仅影响本网关在 OpenAI 账号间的实验性调度选择逻辑') + expect(wrapper.text()).not.toContain('OpenAI 高级调度器') + }) })