From 4fad9321e876470d1878701dcd18947d992f2d49 Mon Sep 17 00:00:00 2001 From: "koalazf.99" Date: Sun, 3 Aug 2025 15:06:35 +0800 Subject: [PATCH] fix system md --- packages/core/src/tools/memoryTool.test.ts | 6 +++--- packages/core/src/tools/memoryTool.ts | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/packages/core/src/tools/memoryTool.test.ts b/packages/core/src/tools/memoryTool.test.ts index aff0cc2e..450d8071 100644 --- a/packages/core/src/tools/memoryTool.test.ts +++ b/packages/core/src/tools/memoryTool.test.ts @@ -20,7 +20,7 @@ import * as os from 'os'; vi.mock('fs/promises'); vi.mock('os'); -const MEMORY_SECTION_HEADER = '## Gemini Added Memories'; +const MEMORY_SECTION_HEADER = '## Qwen Added Memories'; // Define a type for our fsAdapter to ensure consistency interface FsAdapter { @@ -87,7 +87,7 @@ describe('MemoryTool', () => { describe('performAddMemoryEntry (static method)', () => { const testFilePath = path.join( '/mock/home', - '.gemini', + '.qwen', DEFAULT_CONTEXT_FILENAME, // Use the default for basic tests ); @@ -207,7 +207,7 @@ describe('MemoryTool', () => { // Use getCurrentGeminiMdFilename for the default expectation before any setGeminiMdFilename calls in a test const expectedFilePath = path.join( '/mock/home', - '.gemini', + '.qwen', getCurrentGeminiMdFilename(), // This will be DEFAULT_CONTEXT_FILENAME unless changed by a test ); diff --git a/packages/core/src/tools/memoryTool.ts b/packages/core/src/tools/memoryTool.ts index f0f1e16b..029b4b56 100644 --- a/packages/core/src/tools/memoryTool.ts +++ b/packages/core/src/tools/memoryTool.ts @@ -46,9 +46,9 @@ Do NOT use this tool: - \`fact\` (string, required): The specific fact or piece of information to remember. This should be a clear, self-contained statement. For example, if the user says "My favorite color is blue", the fact would be "My favorite color is blue". `; -export const GEMINI_CONFIG_DIR = '.gemini'; -export const DEFAULT_CONTEXT_FILENAME = 'GEMINI.md'; -export const MEMORY_SECTION_HEADER = '## Gemini Added Memories'; +export const GEMINI_CONFIG_DIR = '.qwen'; +export const DEFAULT_CONTEXT_FILENAME = 'QWEN.md'; +export const MEMORY_SECTION_HEADER = '## Qwen Added Memories'; // This variable will hold the currently configured filename for GEMINI.md context files. // It defaults to DEFAULT_CONTEXT_FILENAME but can be overridden by setGeminiMdFilename.