I understand that AWS Sagemaker Pipelines can be run on a scheduler using EventBridge. However, I will like to check if AWS Sagemaker Pipelines allows the user to import custom modules inside the code? All the examples that I had found online all seem to just run a jupyter notebook without importing any other custom scripts.
I have a jupyter notebook main.ipynb that is calling another custom script utilities.py in the code
from utilities import *
I have tried scheduling a notebook job in Sagemaker Studio but it seems that only the main.ipynb is being imported into another virtual machine for running as I could not find the utilities.py script anywhere.