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

推荐订阅源

H
Help Net Security
宝玉的分享
宝玉的分享
The Cloudflare Blog
Apple Machine Learning Research
Apple Machine Learning Research
V
Visual Studio Blog
Last Week in AI
Last Week in AI
Hugging Face - Blog
Hugging Face - Blog
博客园 - 司徒正美
博客园 - 三生石上(FineUI控件)
A
About on SuperTechFans
MyScale Blog
MyScale Blog
aimingoo的专栏
aimingoo的专栏
Microsoft Security Blog
Microsoft Security Blog
D
Docker
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Recent Announcements
Recent Announcements
大猫的无限游戏
大猫的无限游戏
IT之家
IT之家
P
Proofpoint News Feed
L
LangChain Blog
Blog — PlanetScale
Blog — PlanetScale
The GitHub Blog
The GitHub Blog
博客园 - 【当耐特】
Martin Fowler
Martin Fowler

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-lancedb): show full IDs in memory_forget candi...
amittell · 2026-04-30 · via Recent Commits to openclaw:main

@@ -2160,6 +2160,104 @@ describe("memory plugin e2e", () => {

21602160

expect(detectCategory("The server is running on port 3000")).toBe("fact");

21612161

expect(detectCategory("Random note")).toBe("other");

21622162

});

2163+2164+

test("memory_forget candidate list shows full UUIDs, not truncated IDs", async () => {

2165+

const fakeUuid1 = "890e1fae-1234-5678-abcd-ef0123456789";

2166+

const fakeUuid2 = "a1b2c3d4-5678-9abc-def0-1234567890ab";

2167+2168+

// LanceDB vectorSearch returns rows with _distance; score = 1/(1+d)

2169+

// We want scores between 0.7 and 0.9 so candidates are returned (not auto-deleted)

2170+

// score=0.85 => d = 1/0.85 - 1 ≈ 0.176; score=0.80 => d = 1/0.80 - 1 = 0.25

2171+

const fakeRows = [

2172+

{

2173+

id: fakeUuid1,

2174+

text: "User prefers dark mode",

2175+

category: "preference",

2176+

vector: [0.1],

2177+

importance: 0.8,

2178+

createdAt: Date.now(),

2179+

_distance: 0.176,

2180+

},

2181+

{

2182+

id: fakeUuid2,

2183+

text: "User lives in New York",

2184+

category: "fact",

2185+

vector: [0.2],

2186+

importance: 0.7,

2187+

createdAt: Date.now(),

2188+

_distance: 0.25,

2189+

},

2190+

];

2191+2192+

const toArray = vi.fn(async () => fakeRows);

2193+

const limitFn = vi.fn(() => ({ toArray }));

2194+

const vectorSearch = vi.fn(() => ({ limit: limitFn }));

2195+2196+

vi.resetModules();

2197+

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

2198+

default: class MockOpenAI {

2199+

embeddings = { create: vi.fn(async () => ({ data: [{ embedding: [0.1, 0.2, 0.3] }] })) };

2200+

},

2201+

}));

2202+

vi.doMock("@lancedb/lancedb", () => ({

2203+

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

2204+

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

2205+

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

2206+

vectorSearch,

2207+

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

2208+

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

2209+

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

2210+

})),

2211+

})),

2212+

}));

2213+2214+

try {

2215+

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

2216+

// oxlint-disable-next-line typescript/no-explicit-any

2217+

const registeredTools: any[] = [];

2218+

const mockApi = {

2219+

id: "memory-lancedb",

2220+

name: "Memory (LanceDB)",

2221+

source: "test",

2222+

config: {},

2223+

pluginConfig: {

2224+

embedding: { apiKey: OPENAI_API_KEY, model: "text-embedding-3-small" },

2225+

dbPath: getDbPath(),

2226+

autoCapture: false,

2227+

autoRecall: false,

2228+

},

2229+

runtime: {},

2230+

logger: { info: vi.fn(), warn: vi.fn(), error: vi.fn(), debug: vi.fn() },

2231+

// oxlint-disable-next-line typescript/no-explicit-any

2232+

registerTool: (tool: any, opts: any) => {

2233+

registeredTools.push({ tool, opts });

2234+

},

2235+

registerCli: vi.fn(),

2236+

registerService: vi.fn(),

2237+

on: vi.fn(),

2238+

resolvePath: (p: string) => p,

2239+

};

2240+2241+

// oxlint-disable-next-line typescript/no-explicit-any

2242+

memoryPlugin.register(mockApi as any);

2243+

const forgetTool = registeredTools.find((t) => t.opts?.name === "memory_forget")?.tool;

2244+

expect(forgetTool).toBeDefined();

2245+2246+

const result = await forgetTool.execute("test-call-full-ids", { query: "user preference" });

2247+2248+

// The candidate list text must contain the FULL UUID, not a truncated prefix

2249+

const text = result.content?.[0]?.text ?? "";

2250+

expect(text).toContain(fakeUuid1);

2251+

expect(text).toContain(fakeUuid2);

2252+

// Ensure truncated 8-char prefix alone is NOT the format used

2253+

expect(text).not.toMatch(/\[890e1fae\]/);

2254+

expect(text).not.toMatch(/\[a1b2c3d4\]/);

2255+

} finally {

2256+

vi.doUnmock("openai");

2257+

vi.doUnmock("@lancedb/lancedb");

2258+

vi.resetModules();

2259+

}

2260+

});

21632261

});

2164226221652263

describe("lancedb runtime loader", () => {