Fix conn field definition in SQLiteEntityStore (#15440)

This commit is contained in:
Bob Lin 2024-01-22 09:53:49 -06:00 committed by GitHub
parent e1c59779ad
commit acc14802d1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -236,6 +236,12 @@ class SQLiteEntityStore(BaseEntityStore):
session_id: str = "default"
table_name: str = "memory_store"
conn: Any = None
class Config:
"""Configuration for this pydantic object."""
arbitrary_types_allowed = True
def __init__(
self,