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

推荐订阅源

B
Blog RSS Feed
有赞技术团队
有赞技术团队
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
阮一峰的网络日志
阮一峰的网络日志
V
V2EX
Y
Y Combinator Blog
Jina AI
Jina AI
G
Google Developers Blog
Last Week in AI
Last Week in AI
博客园 - 叶小钗
H
Hackread – Cybersecurity News, Data Breaches, AI and More
L
LangChain Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
V
Visual Studio Blog
aimingoo的专栏
aimingoo的专栏
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
J
Java Code Geeks
Stack Overflow Blog
Stack Overflow Blog
IT之家
IT之家
The GitHub Blog
The GitHub Blog
D
Docker
量子位
罗磊的独立博客
腾讯CDC

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(active-memory): use bundled recall tool · openclaw/op...
Takhoffman · 2026-04-28 · via Recent Commits to openclaw:main

@@ -1195,7 +1195,9 @@ describe("qa mock openai server", () => {

11951195

type: "input_text",

11961196

text: [

11971197

"You are a memory search agent.",

1198-

"Use only memory_search and memory_get.",

1198+

"Use only the available memory tools.",

1199+

"Prefer memory_recall when available.",

1200+

"If memory_recall is unavailable, use memory_search and memory_get.",

11991201

"",

12001202

"Conversation context:",

12011203

"Latest user message:",

@@ -1208,9 +1210,9 @@ describe("qa mock openai server", () => {

12081210

}),

12091211

});

12101212

expect(activeMemorySearch.status).toBe(200);

1211-

expect(await activeMemorySearch.text()).toContain('"name":"memory_search"');

1213+

expect(await activeMemorySearch.text()).toContain('"name":"memory_recall"');

121212141213-

const activeMemoryGet = await fetch(`${server.baseUrl}/v1/responses`, {

1215+

const activeMemoryStreamSummary = await fetch(`${server.baseUrl}/v1/responses`, {

12141216

method: "POST",

12151217

headers: {

12161218

"content-type": "application/json",

@@ -1225,7 +1227,9 @@ describe("qa mock openai server", () => {

12251227

type: "input_text",

12261228

text: [

12271229

"You are a memory search agent.",

1228-

"Use only memory_search and memory_get.",

1230+

"Use only the available memory tools.",

1231+

"Prefer memory_recall when available.",

1232+

"If memory_recall is unavailable, use memory_search and memory_get.",

12291233

"",

12301234

"Conversation context:",

12311235

"Latest user message:",

@@ -1237,20 +1241,14 @@ describe("qa mock openai server", () => {

12371241

{

12381242

type: "function_call_output",

12391243

output: JSON.stringify({

1240-

results: [

1241-

{

1242-

path: "MEMORY.md",

1243-

startLine: 1,

1244-

endLine: 1,

1245-

},

1246-

],

1244+

text: "Stable QA movie night snack preference: lemon pepper wings with blue cheese.",

12471245

}),

12481246

},

12491247

],

12501248

}),

12511249

});

1252-

expect(activeMemoryGet.status).toBe(200);

1253-

expect(await activeMemoryGet.text()).toContain('"name":"memory_get"');

1250+

expect(activeMemoryStreamSummary.status).toBe(200);

1251+

expect(await activeMemoryStreamSummary.text()).toContain("lemon pepper wings with blue cheese");

1254125212551253

const activeMemorySummary = await fetch(`${server.baseUrl}/v1/responses`, {

12561254

method: "POST",

@@ -1267,7 +1265,9 @@ describe("qa mock openai server", () => {

12671265

type: "input_text",

12681266

text: [

12691267

"You are a memory search agent.",

1270-

"Use only memory_search and memory_get.",

1268+

"Use only the available memory tools.",

1269+

"Prefer memory_recall when available.",

1270+

"If memory_recall is unavailable, use memory_search and memory_get.",

12711271

"",

12721272

"Conversation context:",

12731273

"Latest user message:",