From 0e064634909b4569d22850bd7a7a253afd476f31 Mon Sep 17 00:00:00 2001 From: goulustis Date: Mon, 2 Feb 2026 09:50:31 +0800 Subject: [PATCH] change default to store instead of printer --- lang_agent/components/conv_store.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lang_agent/components/conv_store.py b/lang_agent/components/conv_store.py index 5b12dee..b28aa4d 100644 --- a/lang_agent/components/conv_store.py +++ b/lang_agent/components/conv_store.py @@ -99,5 +99,5 @@ class ConversationPrinter: else: self.id_dic[conv_id] += len(to_print_msg) -# CONV_STORE = ConversationStore() -CONV_STORE = ConversationPrinter() \ No newline at end of file +CONV_STORE = ConversationStore() +# CONV_STORE = ConversationPrinter() \ No newline at end of file