simplification and further memory decoupling

This commit is contained in:
Alessandro 2026-02-15 02:51:11 +01:00
parent e548bf257b
commit e18efbb115
40 changed files with 273 additions and 923 deletions

View file

@ -1,8 +0,0 @@
"""Memory initialization extension - implementation provided by the memory plugin."""
from python.helpers.plugins import import_plugin_module
# Import the actual implementation from the plugin
_mod = import_plugin_module("memory", "extensions/monologue_start/_10_memory_init.py")
# Re-export all public names
globals().update({k: v for k, v in vars(_mod).items() if not k.startswith('_')})