Merge pull request #24 from Hao19911125/main

This commit is contained in:
Youzini-afk
2026-04-09 22:55:20 +08:00
3 changed files with 12 additions and 3 deletions

1
.gitignore vendored
View File

@@ -12,3 +12,4 @@ AGENTS.md
plans/fix-regex-stage-alias-override.md plans/fix-regex-stage-alias-override.md
猫妖恬恬.json 猫妖恬恬.json
plan_global_task_regex.md plan_global_task_regex.md
docs/BME六大功能全景解析.xlsx

View File

@@ -20,6 +20,13 @@ function getPlannerRecallTimeoutMs() {
: VECTOR_RECALL_TIMEOUT_MS; : VECTOR_RECALL_TIMEOUT_MS;
} }
function getPlannerRequestTimeoutMs() {
const timeoutMs = Number(_bmeRuntime?.getPlannerRecallTimeoutMs?.());
return Number.isFinite(timeoutMs) && timeoutMs > 0
? timeoutMs
: PLANNER_REQUEST_TIMEOUT_MS;
}
function getTrustedOrigin() { return window.location.origin; } function getTrustedOrigin() { return window.location.origin; }
function postToIframe(iframe, payload) { function postToIframe(iframe, payload) {
@@ -988,7 +995,8 @@ async function callPlanner(messages, options = {}) {
if (mt != null && !Number.isNaN(mt) && mt > 0) body.max_tokens = mt; if (mt != null && !Number.isNaN(mt) && mt > 0) body.max_tokens = mt;
const controller = new AbortController(); const controller = new AbortController();
const timeoutId = setTimeout(() => controller.abort(), PLANNER_REQUEST_TIMEOUT_MS); const plannerRequestTimeoutMs = getPlannerRequestTimeoutMs();
const timeoutId = setTimeout(() => controller.abort(), plannerRequestTimeoutMs);
try { try {
const res = await fetch(url, { const res = await fetch(url, {
method: 'POST', method: 'POST',
@@ -1047,7 +1055,7 @@ async function callPlanner(messages, options = {}) {
return full; return full;
} catch (err) { } catch (err) {
if (controller.signal.aborted || err?.name === 'AbortError') { if (controller.signal.aborted || err?.name === 'AbortError') {
throw new Error(`规划请求超时(>${Math.floor(PLANNER_REQUEST_TIMEOUT_MS / 1000)}s`); throw new Error(`规划请求超时(>${Math.floor(plannerRequestTimeoutMs / 1000)}s`);
} }
throw err; throw err;
} finally { } finally {

View File

@@ -6,6 +6,6 @@
"js": "index.js", "js": "index.js",
"css": "style.css", "css": "style.css",
"author": "Youzini", "author": "Youzini",
"version": "4.2.1", "version": "4.2.3",
"homePage": "https://github.com/Youzini-afk/ST-Bionic-Memory-Ecology" "homePage": "https://github.com/Youzini-afk/ST-Bionic-Memory-Ecology"
} }