quivr/streamlit-demo/loaders/powerpoint.py

5 lines
257 B
Python
Raw Normal View History

from .common import process_file
from langchain.document_loaders import UnstructuredPowerPointLoader
2023-05-17 13:12:52 +03:00
def process_powerpoint(vector_store, file, stats_db):
return process_file(vector_store, file, UnstructuredPowerPointLoader, ".pptx", stats_db=stats_db)