fix: fix requirement.txt
Browse files- data_importer.py +2 -0
data_importer.py
CHANGED
|
@@ -9,6 +9,8 @@ class DataImporter:
|
|
| 9 |
def __init__(self, qdrant_url: str = "https://qdrant.taspolsd.dev", collection_name: str = "demo_bge_m3"):
|
| 10 |
self.model = SentenceTransformer("BAAI/bge-m3")
|
| 11 |
# self.client = QdrantClient(url=qdrant_url)
|
|
|
|
|
|
|
| 12 |
self.collection_name = collection_name
|
| 13 |
self.youtube_extractor = YoutubeExtractor()
|
| 14 |
self._init_qdrant()
|
|
|
|
| 9 |
def __init__(self, qdrant_url: str = "https://qdrant.taspolsd.dev", collection_name: str = "demo_bge_m3"):
|
| 10 |
self.model = SentenceTransformer("BAAI/bge-m3")
|
| 11 |
# self.client = QdrantClient(url=qdrant_url)
|
| 12 |
+
self.qdrant_url = qdrant_url
|
| 13 |
+
self.client = None
|
| 14 |
self.collection_name = collection_name
|
| 15 |
self.youtube_extractor = YoutubeExtractor()
|
| 16 |
self._init_qdrant()
|