fix: align DeepSeek canary tool rounds with gate
Memind CI / Test, build, and release guards (pull_request) Successful in 1m32s

This commit is contained in:
john
2026-07-26 23:49:32 +08:00
parent 046704816f
commit fb6865638a
19 changed files with 519 additions and 20 deletions
+3 -3
View File
@@ -800,13 +800,13 @@ test('syncProfileToGoosed writes provider, model and secret keys for builtin', a
);
});
test('syncProfileToGoosed routes local DeepSeek through the no-thinking proxy', async () => {
test('syncProfileToGoosed routes explicitly protected production DeepSeek through the compatibility proxy', async () => {
const previousProfile = process.env.MEMIND_RUNTIME_PROFILE;
const previousDisableThinking = process.env.MEMIND_DEEPSEEK_DISABLE_THINKING;
const previousProxyBase = process.env.MEMIND_DEEPSEEK_NO_THINK_BASE_URL;
const previousGateway = process.env.MEMIND_GOOSED_HOST_GATEWAY;
process.env.MEMIND_RUNTIME_PROFILE = 'local';
delete process.env.MEMIND_DEEPSEEK_DISABLE_THINKING;
process.env.MEMIND_RUNTIME_PROFILE = 'production';
process.env.MEMIND_DEEPSEEK_DISABLE_THINKING = '1';
delete process.env.MEMIND_DEEPSEEK_NO_THINK_BASE_URL;
process.env.MEMIND_GOOSED_HOST_GATEWAY = 'host.lima.internal';