mirror of
https://github.com/hwchase17/langchain.git
synced 2025-07-20 19:41:23 +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"
|
session_id: str = "default"
|
||||||
table_name: str = "memory_store"
|
table_name: str = "memory_store"
|
||||||
|
conn: Any = None
|
||||||
|
|
||||||
|
class Config:
|
||||||
|
"""Configuration for this pydantic object."""
|
||||||
|
|
||||||
|
arbitrary_types_allowed = True
|
||||||
|
|
||||||
def __init__(
|
def __init__(
|
||||||
self,
|
self,
|
||||||
|
Loading…
Reference in New Issue
Block a user