From dd0407410fe093404f7db750e98f6a9efc567d13 Mon Sep 17 00:00:00 2001 From: Your Name Date: Sat, 20 Dec 2025 14:37:09 -0600 Subject: [PATCH] Use user/global fallback for device memory --- custom_components/groqd/conversation.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/custom_components/groqd/conversation.py b/custom_components/groqd/conversation.py index 98c4096..f69b697 100644 --- a/custom_components/groqd/conversation.py +++ b/custom_components/groqd/conversation.py @@ -264,8 +264,6 @@ class GroqdConversationEntity( if memory_scope == "device": if user_input.device_id: memory_key = f"device:{user_input.device_id}" - elif user_input.conversation_id: - memory_key = f"conv:{user_input.conversation_id}" elif user_input.context and user_input.context.user_id: memory_key = f"user:{user_input.context.user_id}" else: @@ -273,8 +271,6 @@ class GroqdConversationEntity( elif memory_scope == "user": if user_input.context and user_input.context.user_id: memory_key = f"user:{user_input.context.user_id}" - elif user_input.conversation_id: - memory_key = f"conv:{user_input.conversation_id}" else: memory_key = "global" elif memory_scope == "global":