🔧 chore(memories.py): hide "entity_store" field in MemoryFrontendNode class to improve code readability and remove unnecessary code

This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-07-10 12:55:11 -03:00
commit df348b019d

View file

@ -89,9 +89,7 @@ class MemoryFrontendNode(FrontendNode):
if field.name == "url":
field.show = True
if field.name == "entity_store":
field.show = True
if name == "SQLiteEntityStore":
field.show = True
field.show = False
class PostgresChatMessageHistoryFrontendNode(MemoryFrontendNode):