Update initate.py
Browse files- initate.py +1 -1
initate.py
CHANGED
@@ -5,6 +5,6 @@ from utils.ingest_video import initiate_video
|
|
5 |
def process_pdf(pdf_path):
|
6 |
image_collection = extract_and_store_images(pdf_path)
|
7 |
text_collection = create_vector_database(pdf_path)
|
8 |
-
video_collection = initiate_video(
|
9 |
return image_collection, text_collection, video_collection
|
10 |
|
|
|
5 |
def process_pdf(pdf_path):
|
6 |
image_collection = extract_and_store_images(pdf_path)
|
7 |
text_collection = create_vector_database(pdf_path)
|
8 |
+
video_collection = initiate_video()
|
9 |
return image_collection, text_collection, video_collection
|
10 |
|