in src/responsibleai/rai_analyse/rai_component_utilities.py [0:0]
def create_rai_tool_directories(rai_insights_dir: pathlib.Path) -> None:
# Have to create empty subdirectories for the managers
# THe RAI Insights object expect these to be present, but
# since directories don't actually exist in Azure Blob store
# they may not be present (some of the tools always have
# a file present, even if no tool instances have been added)
for v in _tool_directory_mapping.values():
os.makedirs(rai_insights_dir / v, exist_ok=True)
_logger.info("Added empty directories")