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

推荐订阅源

D
Docker
大猫的无限游戏
大猫的无限游戏
Jina AI
Jina AI
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 司徒正美
美团技术团队
雷峰网
雷峰网
阮一峰的网络日志
阮一峰的网络日志
WordPress大学
WordPress大学
T
Tailwind CSS Blog
U
Unit 42
C
Check Point Blog
S
SegmentFault 最新的问题
Martin Fowler
Martin Fowler
Stack Overflow Blog
Stack Overflow Blog
云风的 BLOG
云风的 BLOG
L
LangChain Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
腾讯CDC
罗磊的独立博客
小众软件
小众软件
Recent Announcements
Recent Announcements
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
D
DataBreaches.Net

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(memory): support embedding providers without encoding...
steipete · 2026-04-28 · via Recent Commits to openclaw:main

@@ -8,11 +8,13 @@

88

* - Auto-capture filtering

99

*/

101011+

import { Buffer } from "node:buffer";

1112

import { describe, test, expect, vi } from "vitest";

1213

import memoryPlugin, {

1314

detectCategory,

1415

formatRelevantMemoriesContext,

1516

looksLikePromptInjection,

17+

normalizeEmbeddingVector,

1618

normalizeRecallQuery,

1719

shouldCapture,

1820

} from "./index.js";

@@ -57,6 +59,10 @@ function createMockModule(): LanceDbModule {

5759

} as unknown as LanceDbModule;

5860

}

596162+

function invokeEmbeddingCreate(mock: ReturnType<typeof vi.fn>, body: unknown) {

63+

return (mock as unknown as (body: unknown) => unknown)(body);

64+

}

65+6066

function createRuntimeLoader(

6167

overrides: {

6268

env?: NodeJS.ProcessEnv;

@@ -351,7 +357,9 @@ describe("memory plugin e2e", () => {

351357

}));

352358

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

353359

default: class MockOpenAI {

354-

embeddings = { create: embeddingsCreate };

360+

post = vi.fn((_path: string, opts: { body?: unknown }) =>

361+

invokeEmbeddingCreate(embeddingsCreate, opts.body),

362+

);

355363

},

356364

}));

357365

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

@@ -417,7 +425,6 @@ describe("memory plugin e2e", () => {

417425

expect(embeddingsCreate).toHaveBeenCalledWith({

418426

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

419427

input: expectedRecallQuery,

420-

encoding_format: "float",

421428

});

422429

expect(expectedRecallQuery).toHaveLength(120);

423430

expect(vectorSearch).toHaveBeenCalledWith([0.1, 0.2, 0.3]);

@@ -491,7 +498,9 @@ describe("memory plugin e2e", () => {

491498

}));

492499

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

493500

default: class MockOpenAI {

494-

embeddings = { create: embeddingsCreate };

501+

post = vi.fn((_path: string, opts: { body?: unknown }) =>

502+

invokeEmbeddingCreate(embeddingsCreate, opts.body),

503+

);

495504

},

496505

}));

497506

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

@@ -568,7 +577,6 @@ describe("memory plugin e2e", () => {

568577

expect(embeddingsCreate).toHaveBeenCalledWith({

569578

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

570579

input: "what editor should i use?",

571-

encoding_format: "float",

572580

});

573581

expect(result).toMatchObject({

574582

prependContext: expect.stringContaining("I prefer Helix for editing code."),

@@ -622,7 +630,9 @@ describe("memory plugin e2e", () => {

622630

}));

623631

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

624632

default: class MockOpenAI {

625-

embeddings = { create: embeddingsCreate };

633+

post = vi.fn((_path: string, opts: { body?: unknown }) =>

634+

invokeEmbeddingCreate(embeddingsCreate, opts.body),

635+

);

626636

},

627637

}));

628638

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

@@ -745,7 +755,9 @@ describe("memory plugin e2e", () => {

745755

}));

746756

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

747757

default: class MockOpenAI {

748-

embeddings = { create: embeddingsCreate };

758+

post = vi.fn((_path: string, opts: { body?: unknown }) =>

759+

invokeEmbeddingCreate(embeddingsCreate, opts.body),

760+

);

749761

},

750762

}));

751763

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

@@ -844,7 +856,9 @@ describe("memory plugin e2e", () => {

844856

}));

845857

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

846858

default: class MockOpenAI {

847-

embeddings = { create: embeddingsCreate };

859+

post = vi.fn((_path: string, opts: { body?: unknown }) =>

860+

invokeEmbeddingCreate(embeddingsCreate, opts.body),

861+

);

848862

},

849863

}));

850864

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

@@ -905,7 +919,6 @@ describe("memory plugin e2e", () => {

905919

expect(embeddingsCreate).toHaveBeenCalledWith({

906920

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

907921

input: "I prefer Helix for editing code every day.",

908-

encoding_format: "float",

909922

});

910923

expect(vectorSearch).toHaveBeenCalledTimes(1);

911924

expect(add).toHaveBeenCalledTimes(1);

@@ -970,7 +983,9 @@ describe("memory plugin e2e", () => {

970983

}));

971984

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

972985

default: class MockOpenAI {

973-

embeddings = { create: embeddingsCreate };

986+

post = vi.fn((_path: string, opts: { body?: unknown }) =>

987+

invokeEmbeddingCreate(embeddingsCreate, opts.body),

988+

);

974989

},

975990

}));

976991

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

@@ -1047,7 +1062,6 @@ describe("memory plugin e2e", () => {

10471062

expect(embeddingsCreate).toHaveBeenCalledWith({

10481063

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

10491064

input: "I prefer Helix for editing code every day.",

1050-

encoding_format: "float",

10511065

});

10521066

expect(add).toHaveBeenCalledWith([

10531067

expect.objectContaining({

@@ -1106,7 +1120,9 @@ describe("memory plugin e2e", () => {

11061120

}));

11071121

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

11081122

default: class MockOpenAI {

1109-

embeddings = { create: embeddingsCreate };

1123+

post = vi.fn((_path: string, opts: { body?: unknown }) =>

1124+

invokeEmbeddingCreate(embeddingsCreate, opts.body),

1125+

);

11101126

},

11111127

}));

11121128

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

@@ -1231,7 +1247,9 @@ describe("memory plugin e2e", () => {

12311247

}));

12321248

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

12331249

default: class MockOpenAI {

1234-

embeddings = { create: embeddingsCreate };

1250+

post = vi.fn((_path: string, opts: { body?: unknown }) =>

1251+

invokeEmbeddingCreate(embeddingsCreate, opts.body),

1252+

);

12351253

},

12361254

}));

12371255

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

@@ -1336,7 +1354,9 @@ describe("memory plugin e2e", () => {

13361354

}));

13371355

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

13381356

default: class MockOpenAI {

1339-

embeddings = { create: embeddingsCreate };

1357+

post = vi.fn((_path: string, opts: { body?: unknown }) =>

1358+

invokeEmbeddingCreate(embeddingsCreate, opts.body),

1359+

);

13401360

},

13411361

}));

13421362

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

@@ -1425,12 +1445,10 @@ describe("memory plugin e2e", () => {

14251445

expect(harness.embeddingsCreate).toHaveBeenNthCalledWith(1, {

14261446

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

14271447

input: "I prefer Helix for editing code every day.",

1428-

encoding_format: "float",

14291448

});

14301449

expect(harness.embeddingsCreate).toHaveBeenNthCalledWith(2, {

14311450

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

14321451

input: "I prefer Fish for shell commands every day.",

1433-

encoding_format: "float",

14341452

});

14351453

expect(harness.add).toHaveBeenCalledTimes(2);

14361454

} finally {

@@ -1493,7 +1511,6 @@ describe("memory plugin e2e", () => {

14931511

expect(harness.embeddingsCreate).toHaveBeenNthCalledWith(3, {

14941512

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

14951513

input: "I prefer Deno for small scripts every day.",

1496-

encoding_format: "float",

14971514

});

14981515

expect(harness.add).toHaveBeenCalledTimes(3);

14991516

} finally {

@@ -1555,7 +1572,9 @@ describe("memory plugin e2e", () => {

15551572

}));

15561573

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

15571574

default: class MockOpenAI {

1558-

embeddings = { create: embeddingsCreate };

1575+

post = vi.fn((_path: string, opts: { body?: unknown }) =>

1576+

invokeEmbeddingCreate(embeddingsCreate, opts.body),

1577+

);

15591578

},

15601579

}));

15611580

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

@@ -1611,7 +1630,6 @@ describe("memory plugin e2e", () => {

16111630

expect(embeddingsCreate).toHaveBeenCalledWith({

16121631

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

16131632

input: "hello dimensions",

1614-

encoding_format: "float",

16151633

dimensions: 1024,

16161634

});

16171635

} finally {

@@ -1651,7 +1669,9 @@ describe("memory plugin e2e", () => {

16511669

}));

16521670

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

16531671

default: class MockOpenAI {

1654-

embeddings = { create: embeddingsCreate };

1672+

post = vi.fn((_path: string, opts: { body?: unknown }) =>

1673+

invokeEmbeddingCreate(embeddingsCreate, opts.body),

1674+

);

16551675

},

16561676

}));

16571677

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

@@ -1833,6 +1853,31 @@ describe("memory plugin e2e", () => {

18331853

expect(normalizeRecallQuery(`look up ${"x".repeat(200)}`, 120)).toHaveLength(120);

18341854

});

183518551856+

test("normalizeEmbeddingVector accepts float arrays and base64 float32 responses", async () => {

1857+

expect(normalizeEmbeddingVector([0.1, 0.2, 0.3])).toEqual([0.1, 0.2, 0.3]);

1858+1859+

const bytes = Buffer.alloc(2 * Float32Array.BYTES_PER_ELEMENT);

1860+

const view = new DataView(bytes.buffer, bytes.byteOffset, bytes.byteLength);

1861+

view.setFloat32(0, 1.25, true);

1862+

view.setFloat32(Float32Array.BYTES_PER_ELEMENT, -2.5, true);

1863+1864+

const decoded = normalizeEmbeddingVector(bytes.toString("base64"));

1865+

expect(decoded[0]).toBeCloseTo(1.25);

1866+

expect(decoded[1]).toBeCloseTo(-2.5);

1867+

});

1868+1869+

test("normalizeEmbeddingVector rejects malformed embedding payloads", async () => {

1870+

expect(() => normalizeEmbeddingVector([0.1, Number.NaN])).toThrow(

1871+

"Embedding response contains non-numeric values",

1872+

);

1873+

expect(() => normalizeEmbeddingVector("abc")).toThrow(

1874+

"Base64 embedding response has invalid byte length",

1875+

);

1876+

expect(() => normalizeEmbeddingVector(undefined)).toThrow(

1877+

"Embedding response is missing a vector",

1878+

);

1879+

});

1880+18361881

test("formatRelevantMemoriesContext escapes memory text and marks entries as untrusted", async () => {

18371882

const context = formatRelevantMemoriesContext([

18381883

{