diff --git a/extensions/python/process_chain_end/_60_auto_dream.py b/extensions/python/process_chain_end/_60_auto_dream.py index 0a1b4f8..7213e10 100644 --- a/extensions/python/process_chain_end/_60_auto_dream.py +++ b/extensions/python/process_chain_end/_60_auto_dream.py @@ -16,7 +16,7 @@ async def execute(self, **kwargs): if self.agent.context.type == AgentContextType.BACKGROUND: return - config = plugins.get_plugin_config("AutoDream", self.agent) or {} + config = plugins.get_plugin_config("autodream", self.agent) or {} memory_config = plugins.get_plugin_config("_memory", self.agent) or {} if not memory_config.get("memory_memorize_enabled", True): return diff --git a/helpers/auto_dream.py b/helpers/auto_dream.py index 2d3c235..3f74ac0 100644 --- a/helpers/auto_dream.py +++ b/helpers/auto_dream.py @@ -19,7 +19,7 @@ from langchain_core.documents import Document -PLUGIN_NAME = "AutoDream" +PLUGIN_NAME = "autodream" MEMORY_PLUGIN_NAME = "_memory" AUTO_DREAM_DIR = "autodream"