This commit is contained in:
Félix Dorn 2025-07-03 16:26:30 +02:00
commit 2da206d368
17 changed files with 955 additions and 0 deletions

13
pipeline/enrichments.py Normal file
View file

@ -0,0 +1,13 @@
"""
This module enriches data, they take time to run, and are usually expensive (API calls...),
they should manage their own state, and only be run if the data's version is different than
their save.
"""
from .run import Run
import pandas as pd
def enrich_with_task_estimateability(run: Run) -> pd.DataFrame:
raise NotImplementedError
def enrich_with_task_estimates(run: Run) -> pd.DataFrame:
raise NotImplementedError