[docs]defset_odb_path(path:str):"""Set the output directory for the results. Parameters: ------------ path: str The path to the output directory. """CONSTANTS.set_output_dir(path)ifos.path.exists(RESULTS_DIR):foriteminos.listdir(RESULTS_DIR):source_path=os.path.join(RESULTS_DIR,item)target_path=os.path.join(path,item)shutil.move(source_path,target_path)shutil.rmtree(RESULTS_DIR)