chatCSV / loaders /powerpoint.py
niro
adding quivr
b516cf5
Raw
History Blame Contribute Delete
257 Bytes
from .common import process_file
from langchain.document_loaders import UnstructuredPowerPointLoader
def process_powerpoint(vector_store, file, stats_db):
return process_file(vector_store, file, UnstructuredPowerPointLoader, ".pptx", stats_db=stats_db)