mirror of
https://github.com/StanGirard/quivr.git
synced 2024-11-27 18:32:55 +03:00
81321ea615
* 🚑 fix on fetch user * 🚑 fix imports for csv
23 lines
438 B
Python
23 lines
438 B
Python
from langchain.document_loaders import CSVLoader
|
|
from models.files import File
|
|
from models.settings import CommonsDep
|
|
|
|
from .common import process_file
|
|
|
|
|
|
def process_csv(
|
|
commons: CommonsDep,
|
|
file: File,
|
|
enable_summarization,
|
|
brain_id,
|
|
user_openai_api_key,
|
|
):
|
|
return process_file(
|
|
commons,
|
|
file,
|
|
CSVLoader,
|
|
enable_summarization,
|
|
brain_id,
|
|
user_openai_api_key,
|
|
)
|