download_loader
statements? What did the download_x
statements look like in your code?def _cell_installs_llama_hub(cell) -> bool: lines = cell["source"] llama_hub_partial_statements = [ "pip install llama-hub", "import download_loader", "import download_tool", ] if len(lines) > 1: return False if cell["cell_type"] == "code" and any( el in lines[0] for el in llama_hub_partial_statements ): return True return False