Spaces:
Sleeping
Sleeping
Update vector_store.py
Browse files- vector_store.py +1 -1
vector_store.py
CHANGED
|
@@ -3,7 +3,7 @@ import pyarrow as pa
|
|
| 3 |
from haystack import Document
|
| 4 |
|
| 5 |
class Vectorstore:
|
| 6 |
-
def __init__(self, embedder, top_k
|
| 7 |
|
| 8 |
self.db = lancedb.connect("/tmp/data")
|
| 9 |
|
|
|
|
| 3 |
from haystack import Document
|
| 4 |
|
| 5 |
class Vectorstore:
|
| 6 |
+
def __init__(self, embedder, top_k) -> None:
|
| 7 |
|
| 8 |
self.db = lancedb.connect("/tmp/data")
|
| 9 |
|