From 9d0cafcfa6d1c3622a6001282fc75699449ce33e Mon Sep 17 00:00:00 2001 From: Aravind Karnam Date: Sun, 21 Jul 2024 14:55:58 +0530 Subject: [PATCH] fixed import error in model_loader.py --- crawl4ai/model_loader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crawl4ai/model_loader.py b/crawl4ai/model_loader.py index 7e17f7f9..7b22f0e1 100644 --- a/crawl4ai/model_loader.py +++ b/crawl4ai/model_loader.py @@ -3,7 +3,7 @@ from pathlib import Path import subprocess, os import shutil import tarfile -from crawl4ai.config import MODEL_REPO_BRANCH +from .model_loader import * import argparse import urllib.request __location__ = os.path.realpath(os.path.join(os.getcwd(), os.path.dirname(__file__)))