diff --git a/src/cai/repl/commands/__init__.py b/src/cai/repl/commands/__init__.py index 18769f20..fee806da 100644 --- a/src/cai/repl/commands/__init__.py +++ b/src/cai/repl/commands/__init__.py @@ -25,7 +25,6 @@ from cai.repl.commands.base import ( # Import all command modules # These imports will register the commands with the registry from cai.repl.commands import ( # pylint: disable=import-error,unused-import,line-too-long,redefined-builtin # noqa: E501,F401 - memory, help, graph, exit, diff --git a/src/cai/repl/commands/memory.py b/src/cai/repl/commands/memory.py deleted file mode 100644 index 12614d92..00000000 --- a/src/cai/repl/commands/memory.py +++ /dev/null @@ -1,4 +0,0 @@ -""" -Memory command for CAI REPL. -This module provides commands for managing memory collections. -"""