name: naive_python_uv

uv_env: pyproject.toml

entry_points:
  train:
    parameters:
      train_data: str
      model: str
    command: "python mock_predictor_script.py train {train_data} {model}"
  predict:
    parameters:
      historic_data: str
      future_data: str
      model: str
      out_file: str
    command: "python mock_predictor_script.py predict {model} {historic_data} {future_data} {out_file}"
