diff --git a/main/settings_celery.py b/main/settings_celery.py index 65533bc6f3..cd909c801f 100644 --- a/main/settings_celery.py +++ b/main/settings_celery.py @@ -180,6 +180,10 @@ 60 * EMBEDDING_SCHEDULE_MINUTES, ), # default is every 30 minutes }, + "daily_topic_embeddings_sync": { + "task": "vector_search.tasks.sync_topics", + "schedule": crontab(minute=0, hour="6,18,23"), # 2am 2pm and 7pm EST + }, } )