🔧 chore(memories.py): set 'url' field to be shown in the frontend

The 'url' field in the MemoryFrontendNode class is now set to be shown in the frontend. This change allows the 'url' field to be visible and accessible to users in the frontend interface.
This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-06-29 17:39:25 -03:00
commit e24ad0513b

View file

@ -75,6 +75,8 @@ class MemoryFrontendNode(FrontendNode):
field.show = True
field.advanced = False
field.required = False
if field.name == "url":
field.show = True
class PostgresChatMessageHistoryFrontendNode(MemoryFrontendNode):