File size: 258 Bytes
36ed17a
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
from celery import Celery
from app.core.config import settings

celery_app = Celery("chat_tasks", broker=settings.redis_url, backend=settings.redis_url)

celery_app.conf.update(
    task_serializer="json", result_serializer="json", accept_content=["json"]
)