File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
snippets/destination_connectors Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -102,6 +102,6 @@ if __name__ == "__main__":
102102 # ),
103103
104104 stager_config = LanceDBUploadStagerConfig(),
105- uploader_config = LanceDBUploaderConfig(table_name = os.gentenv (" LANCEDB_TABLE" ))
105+ uploader_config = LanceDBUploaderConfig(table_name = os.getenv (" LANCEDB_TABLE" ))
106106 ).run()
107107```
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ if __name__ == "__main__":
6565 # ),
6666 # stager_config=LocalQdrantUploadStagerConfig(),
6767 # uploader_config=LocalQdrantUploaderConfig(
68- # collection_name=os.gentenv ("QDRANT_COLLECTION"),
68+ # collection_name=os.getenv ("QDRANT_COLLECTION"),
6969 # batch_size=50,
7070 # num_processes=1
7171 # )
@@ -77,7 +77,7 @@ if __name__ == "__main__":
7777 # ),
7878 # stager_config=ServerQdrantUploadStagerConfig(),
7979 # uploader_config=ServerQdrantUploaderConfig(
80- # collection_name=os.gentenv ("QDRANT_COLLECTION"),
80+ # collection_name=os.getenv ("QDRANT_COLLECTION"),
8181 # batch_size=50,
8282 # num_processes=1
8383 # )
@@ -91,7 +91,7 @@ if __name__ == "__main__":
9191 ),
9292 stager_config = CloudQdrantUploadStagerConfig(),
9393 uploader_config = CloudQdrantUploaderConfig(
94- collection_name = os.gentenv (" QDRANT_COLLECTION" ),
94+ collection_name = os.getenv (" QDRANT_COLLECTION" ),
9595 batch_size = 50 ,
9696 num_processes = 1
9797 )
You can’t perform that action at this time.
0 commit comments