Skip to content

Commit 37b6ba0

Browse files
committed
fix: import error
1 parent 4cd21f5 commit 37b6ba0

File tree

5 files changed

+8
-3
lines changed

5 files changed

+8
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ dependencies = [
3030
"undetected-playwright>=0.3.0",
3131
"google>=3.0.0",
3232
"langchain-ollama>=0.1.3",
33-
33+
"simpleeval>=1.0.0",
3434
"semchunk==2.2.0",
3535
"transformers==4.44.2",
3636
"qdrant-client>=1.11.3",

requirements-dev.lock

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -445,6 +445,8 @@ setuptools==75.1.0
445445
# via grpcio-tools
446446
sf-hamilton==1.73.1
447447
# via burr
448+
simpleeval==1.0.0
449+
# via scrapegraphai
448450
six==1.16.0
449451
# via python-dateutil
450452
smmap==5.0.1

requirements.lock

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -328,6 +328,8 @@ sentencepiece==0.2.0
328328
# via mistral-common
329329
setuptools==75.1.0
330330
# via grpcio-tools
331+
simpleeval==1.0.0
332+
# via scrapegraphai
331333
six==1.16.0
332334
# via python-dateutil
333335
sniffio==1.3.1

scrapegraphai/graphs/script_creator_graph.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
from ..nodes import (
99
FetchNode,
1010
ParseNode,
11-
GenerateScraperNode
11+
GenerateScraperNode,
12+
ConditionalNode
1213
)
1314

1415
class ScriptCreatorGraph(AbstractGraph):

scrapegraphai/graphs/smart_scraper_multi_concat_graph.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
)
1616
from ..utils.copy import safe_deepcopy
1717

18-
class SmartScraperMultiCondGraph(AbstractGraph):
18+
class SmartScraperMultiConcatGraph(AbstractGraph):
1919
"""
2020
SmartScraperMultiConditionalGraph is a scraping pipeline that scrapes a
2121
list of URLs and generates answers to a given prompt.

0 commit comments

Comments
 (0)