2023-10-26 12:38:15 +02:00
from ee . session_recordings . persistence_tasks import (
persist_finished_recordings ,
persist_single_recording ,
)
from . subscriptions import (
deliver_subscription_report ,
handle_subscription_value_change ,
schedule_all_subscriptions ,
)
2024-03-28 13:12:51 +01:00
from . replay import (
embed_batch_of_recordings_task ,
generate_recordings_embeddings_batch ,
generate_replay_embedding_error_clusters ,
cluster_replay_error_embeddings ,
)
2023-01-12 09:23:51 +01:00
# As our EE tasks are not included at startup for Celery, we need to ensure they are declared here so that they are imported by posthog/settings/celery.py
__all__ = [
" persist_single_recording " ,
" persist_finished_recordings " ,
" schedule_all_subscriptions " ,
" deliver_subscription_report " ,
" handle_subscription_value_change " ,
2024-02-14 13:50:42 +01:00
" embed_batch_of_recordings_task " ,
" generate_recordings_embeddings_batch " ,
2024-03-28 13:12:51 +01:00
" generate_replay_embedding_error_clusters " ,
" cluster_replay_error_embeddings " ,
2023-01-12 09:23:51 +01:00
]