mirror of
https://github.com/StanGirard/quivr.git
synced 2024-11-27 10:20:32 +03:00
a626b84b96
Adds a python code parser and invokes it in processors.py
15 lines
421 B
Python
15 lines
421 B
Python
from langchain.document_loaders import PythonLoader
|
|
from models import File
|
|
|
|
from .common import process_file
|
|
|
|
|
|
async def process_python(file: File, enable_summarization, brain_id, user_openai_api_key):
|
|
return await process_file(
|
|
file=file,
|
|
loader_class=PythonLoader,
|
|
enable_summarization=enable_summarization,
|
|
brain_id=brain_id,
|
|
user_openai_api_key=user_openai_api_key,
|
|
)
|