惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

J
Java Code Geeks
F
Fortinet All Blogs
Martin Fowler
Martin Fowler
M
MIT News - Artificial intelligence
G
Google Developers Blog
P
Proofpoint News Feed
Recent Announcements
Recent Announcements
MyScale Blog
MyScale Blog
D
DataBreaches.Net
Stack Overflow Blog
Stack Overflow Blog
月光博客
月光博客
爱范儿
爱范儿
罗磊的独立博客
腾讯CDC
Hugging Face - Blog
Hugging Face - Blog
博客园 - 叶小钗
Vercel News
Vercel News
酷 壳 – CoolShell
酷 壳 – CoolShell
B
Blog
C
Check Point Blog
美团技术团队
宝玉的分享
宝玉的分享
Microsoft Security Blog
Microsoft Security Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix(hooks): respect live lancedb memory config · openclaw...
vincentkoc · 2026-04-23 · via Recent Commits to openclaw:main

@@ -384,6 +384,129 @@ describe("memory plugin e2e", () => {

384384

}

385385

});

386386387+

test("uses live runtime config to skip auto-recall after registration", async () => {

388+

const embeddingsCreate = vi.fn(async () => ({

389+

data: [{ embedding: [0.1, 0.2, 0.3] }],

390+

}));

391+

const ensureGlobalUndiciEnvProxyDispatcher = vi.fn();

392+

const loadLanceDbModule = vi.fn(async () => ({

393+

connect: vi.fn(async () => ({

394+

tableNames: vi.fn(async () => ["memories"]),

395+

openTable: vi.fn(async () => ({

396+

vectorSearch: vi.fn(() => ({ limit: vi.fn(() => ({ toArray: vi.fn(async () => []) })) })),

397+

countRows: vi.fn(async () => 0),

398+

add: vi.fn(async () => undefined),

399+

delete: vi.fn(async () => undefined),

400+

})),

401+

})),

402+

}));

403+

let configFile: Record<string, unknown> = {

404+

plugins: {

405+

entries: {

406+

"memory-lancedb": {

407+

config: {

408+

embedding: {

409+

apiKey: OPENAI_API_KEY,

410+

model: "text-embedding-3-small",

411+

},

412+

dbPath: getDbPath(),

413+

autoCapture: false,

414+

autoRecall: true,

415+

},

416+

},

417+

},

418+

},

419+

};

420+421+

vi.resetModules();

422+

vi.doMock("openclaw/plugin-sdk/runtime-env", () => ({

423+

ensureGlobalUndiciEnvProxyDispatcher,

424+

}));

425+

vi.doMock("openai", () => ({

426+

default: class MockOpenAI {

427+

embeddings = { create: embeddingsCreate };

428+

},

429+

}));

430+

vi.doMock("./lancedb-runtime.js", () => ({

431+

loadLanceDbModule,

432+

}));

433+434+

try {

435+

const { default: dynamicMemoryPlugin } = await import("./index.js");

436+

const on = vi.fn();

437+

const mockApi = {

438+

id: "memory-lancedb",

439+

name: "Memory (LanceDB)",

440+

source: "test",

441+

config: {},

442+

pluginConfig: {

443+

embedding: {

444+

apiKey: OPENAI_API_KEY,

445+

model: "text-embedding-3-small",

446+

},

447+

dbPath: getDbPath(),

448+

autoCapture: false,

449+

autoRecall: true,

450+

},

451+

runtime: {

452+

config: {

453+

loadConfig: () => configFile,

454+

},

455+

},

456+

logger: {

457+

info: vi.fn(),

458+

warn: vi.fn(),

459+

error: vi.fn(),

460+

debug: vi.fn(),

461+

},

462+

registerTool: vi.fn(),

463+

registerCli: vi.fn(),

464+

registerService: vi.fn(),

465+

on,

466+

resolvePath: (p: string) => p,

467+

};

468+469+

dynamicMemoryPlugin.register(mockApi as any);

470+471+

configFile = {

472+

plugins: {

473+

entries: {

474+

"memory-lancedb": {

475+

config: {

476+

embedding: {

477+

apiKey: OPENAI_API_KEY,

478+

model: "text-embedding-3-small",

479+

},

480+

dbPath: getDbPath(),

481+

autoCapture: false,

482+

autoRecall: false,

483+

},

484+

},

485+

},

486+

},

487+

};

488+489+

const beforePromptBuild = on.mock.calls.find(

490+

([hookName]) => hookName === "before_prompt_build",

491+

)?.[1];

492+

expect(beforePromptBuild).toBeTypeOf("function");

493+494+

const result = await beforePromptBuild?.(

495+

{ prompt: "what editor should i use?", messages: [] },

496+

{},

497+

);

498+499+

expect(result).toBeUndefined();

500+

expect(embeddingsCreate).not.toHaveBeenCalled();

501+

expect(loadLanceDbModule).not.toHaveBeenCalled();

502+

} finally {

503+

vi.doUnmock("openclaw/plugin-sdk/runtime-env");

504+

vi.doUnmock("openai");

505+

vi.doUnmock("./lancedb-runtime.js");

506+

vi.resetModules();

507+

}

508+

});

509+387510

test("runs auto-capture through the registered agent_end hook", async () => {

388511

const embeddingsCreate = vi.fn(async () => ({

389512

data: [{ embedding: [0.1, 0.2, 0.3] }],

@@ -492,6 +615,131 @@ describe("memory plugin e2e", () => {

492615

}

493616

});

494617618+

test("uses live runtime config to skip auto-capture after registration", async () => {

619+

const embeddingsCreate = vi.fn(async () => ({

620+

data: [{ embedding: [0.1, 0.2, 0.3] }],

621+

}));

622+

const ensureGlobalUndiciEnvProxyDispatcher = vi.fn();

623+

const add = vi.fn(async () => undefined);

624+

const loadLanceDbModule = vi.fn(async () => ({

625+

connect: vi.fn(async () => ({

626+

tableNames: vi.fn(async () => ["memories"]),

627+

openTable: vi.fn(async () => ({

628+

vectorSearch: vi.fn(() => ({ limit: vi.fn(() => ({ toArray: vi.fn(async () => []) })) })),

629+

countRows: vi.fn(async () => 0),

630+

add,

631+

delete: vi.fn(async () => undefined),

632+

})),

633+

})),

634+

}));

635+

let configFile: Record<string, unknown> = {

636+

plugins: {

637+

entries: {

638+

"memory-lancedb": {

639+

config: {

640+

embedding: {

641+

apiKey: OPENAI_API_KEY,

642+

model: "text-embedding-3-small",

643+

},

644+

dbPath: getDbPath(),

645+

autoCapture: true,

646+

autoRecall: false,

647+

},

648+

},

649+

},

650+

},

651+

};

652+653+

vi.resetModules();

654+

vi.doMock("openclaw/plugin-sdk/runtime-env", () => ({

655+

ensureGlobalUndiciEnvProxyDispatcher,

656+

}));

657+

vi.doMock("openai", () => ({

658+

default: class MockOpenAI {

659+

embeddings = { create: embeddingsCreate };

660+

},

661+

}));

662+

vi.doMock("./lancedb-runtime.js", () => ({

663+

loadLanceDbModule,

664+

}));

665+666+

try {

667+

const { default: dynamicMemoryPlugin } = await import("./index.js");

668+

const on = vi.fn();

669+

const mockApi = {

670+

id: "memory-lancedb",

671+

name: "Memory (LanceDB)",

672+

source: "test",

673+

config: {},

674+

pluginConfig: {

675+

embedding: {

676+

apiKey: OPENAI_API_KEY,

677+

model: "text-embedding-3-small",

678+

},

679+

dbPath: getDbPath(),

680+

autoCapture: true,

681+

autoRecall: false,

682+

},

683+

runtime: {

684+

config: {

685+

loadConfig: () => configFile,

686+

},

687+

},

688+

logger: {

689+

info: vi.fn(),

690+

warn: vi.fn(),

691+

error: vi.fn(),

692+

debug: vi.fn(),

693+

},

694+

registerTool: vi.fn(),

695+

registerCli: vi.fn(),

696+

registerService: vi.fn(),

697+

on,

698+

resolvePath: (p: string) => p,

699+

};

700+701+

dynamicMemoryPlugin.register(mockApi as any);

702+703+

configFile = {

704+

plugins: {

705+

entries: {

706+

"memory-lancedb": {

707+

config: {

708+

embedding: {

709+

apiKey: OPENAI_API_KEY,

710+

model: "text-embedding-3-small",

711+

},

712+

dbPath: getDbPath(),

713+

autoCapture: false,

714+

autoRecall: false,

715+

},

716+

},

717+

},

718+

},

719+

};

720+721+

const agentEnd = on.mock.calls.find(([hookName]) => hookName === "agent_end")?.[1];

722+

expect(agentEnd).toBeTypeOf("function");

723+724+

await agentEnd?.(

725+

{

726+

success: true,

727+

messages: [{ role: "user", content: "I prefer Helix for editing code every day." }],

728+

},

729+

{},

730+

);

731+732+

expect(embeddingsCreate).not.toHaveBeenCalled();

733+

expect(loadLanceDbModule).not.toHaveBeenCalled();

734+

expect(add).not.toHaveBeenCalled();

735+

} finally {

736+

vi.doUnmock("openclaw/plugin-sdk/runtime-env");

737+

vi.doUnmock("openai");

738+

vi.doUnmock("./lancedb-runtime.js");

739+

vi.resetModules();

740+

}

741+

});

742+495743

test("passes configured dimensions to OpenAI embeddings API", async () => {

496744

const embeddingsCreate = vi.fn(async () => ({

497745

data: [{ embedding: [0.1, 0.2, 0.3] }],