Spaces:
Runtime error
Runtime error
File size: 146 Bytes
36ed17a |
1 2 3 4 5 6 7 |
from app.core.celery_app import celery_app
@celery_app.task
def process_chat_message(content: str):
print(f"Processing message: {content}")
|