diff --git a/pyproject.toml b/pyproject.toml index 13c0dcfc..0c5d40e9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,6 @@ [project] name = "scrapegraphai" version = "1.15.1" - description = "A web scraping library based on LangChain which uses LLM and direct graph logic to create scraping pipelines." authors = [ { name = "Marco Vinciguerra", email = "mvincig11@gmail.com" }, diff --git a/scrapegraphai/graphs/base_graph.py b/scrapegraphai/graphs/base_graph.py index f442ac21..17c05032 100644 --- a/scrapegraphai/graphs/base_graph.py +++ b/scrapegraphai/graphs/base_graph.py @@ -5,7 +5,6 @@ import time import warnings from typing import Tuple from langchain_community.callbacks import get_openai_callback -from ..integrations import BurrBridge from ..telemetry import log_graph_execution class BaseGraph: @@ -255,6 +254,7 @@ class BaseGraph: self.initial_state = initial_state if self.use_burr: + from ..integrations import BurrBridge bridge = BurrBridge(self, self.burr_config) result = bridge.execute(initial_state)