Use PascalCase for all tool display names (#12918)

This commit is contained in:
Tommaso Sciortino
2025-11-11 20:28:13 -08:00
committed by GitHub
parent 11a0a9b911
commit d3cf28eb4b
5 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -212,7 +212,7 @@ describe('MemoryTool', () => {
it('should have correct name, displayName, description, and schema', () => {
expect(memoryTool.name).toBe('save_memory');
expect(memoryTool.displayName).toBe('Save Memory');
expect(memoryTool.displayName).toBe('SaveMemory');
expect(memoryTool.description).toContain(
'Saves a specific piece of information',
);