mirror of
https://github.com/hwchase17/langchain.git
synced 2025-06-30 10:23:30 +00:00
community: kwargs for CassandraGraphVectorStore (#25300)
- **Description:** pass kwargs from CassandraGraphVectorStore to underlying store Co-authored-by: ccurme <chester.curme@gmail.com>
This commit is contained in:
parent
deb27d8970
commit
1adc161642
@ -32,6 +32,7 @@ class CassandraGraphVectorStore(GraphVectorStore):
|
|||||||
session: Optional[Session] = None,
|
session: Optional[Session] = None,
|
||||||
keyspace: Optional[str] = None,
|
keyspace: Optional[str] = None,
|
||||||
setup_mode: SetupMode = SetupMode.SYNC,
|
setup_mode: SetupMode = SetupMode.SYNC,
|
||||||
|
**kwargs: Any,
|
||||||
):
|
):
|
||||||
"""
|
"""
|
||||||
Create the hybrid graph store.
|
Create the hybrid graph store.
|
||||||
@ -74,6 +75,7 @@ class CassandraGraphVectorStore(GraphVectorStore):
|
|||||||
session=session,
|
session=session,
|
||||||
keyspace=keyspace,
|
keyspace=keyspace,
|
||||||
setup_mode=_setup_mode,
|
setup_mode=_setup_mode,
|
||||||
|
**kwargs,
|
||||||
)
|
)
|
||||||
|
|
||||||
@property
|
@property
|
||||||
|
Loading…
Reference in New Issue
Block a user