Skip to content

Commit b4614fe

Browse files
author
Nikos Papailiou
committed
Add kwargs
1 parent 1b8358e commit b4614fe

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

apis/python/src/tiledb/vector_search/flat_index.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ def __init__(
3030
uri: str,
3131
config: Optional[Mapping[str, Any]] = None,
3232
timestamp=None,
33+
**kwargs,
3334
):
3435
super().__init__(uri=uri, config=config, timestamp=timestamp)
3536
self.index_type = INDEX_TYPE

apis/python/src/tiledb/vector_search/ingestion.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ def ingest(
3333
verbose: bool = False,
3434
trace_id: Optional[str] = None,
3535
mode: Mode = Mode.LOCAL,
36+
**kwargs,
3637
):
3738
"""
3839
Ingest vectors into TileDB.

apis/python/src/tiledb/vector_search/ivf_flat_index.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ def __init__(
4242
config: Optional[Mapping[str, Any]] = None,
4343
timestamp=None,
4444
memory_budget: int = -1,
45+
**kwargs,
4546
):
4647
super().__init__(uri=uri, config=config, timestamp=timestamp)
4748
self.index_type = INDEX_TYPE

0 commit comments

Comments
 (0)