mirror of
https://github.com/hwchase17/langchain
synced 2024-10-31 15:20:26 +00:00
Fix conn
field definition in SQLiteEntityStore (#15440)
This commit is contained in:
parent
e1c59779ad
commit
acc14802d1
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user