Hi,
We are using Databricks asset bundles, and we create functions which we import in notebooks, for instance:
from utils import helpers
where utils is just a folder in our root. When running this with source: WORKSPACE, it will fail to resolve the import. while when we have source: GIT, it works.
Is there any best practice how we should deal with this? I know that we could build a wheel file but, we have multiple of these folders and using UV I am not sure if it is really possible to include all these folders where we import functions from.
Kind regards