DocsGPT/application/api/user/tasks.py

8 lines
265 B
Python
Raw Normal View History

2023-09-27 15:25:57 +00:00
from application.worker import ingest_worker
from application.celery import celery
@celery.task(bind=True)
def ingest(self, directory, formats, name_job, filename, user):
resp = ingest_worker(self, directory, formats, name_job, filename, user)
return resp