Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -121,3 +121,10 @@ ignore_missing_imports = true
[tool.poe.tasks]
pylint-local = "pylint scraperaphai/**/*.py"
pylint-ci = "pylint --disable=C0114,C0115,C0116 --exit-zero scrapegraphai/**/*.py"

[dependency-groups]
dev = [
"langchain-fireworks>=1.6.1",
"pandas>=2.3.3",
"selenium>=4.49.0",
]
2 changes: 1 addition & 1 deletion tests/graphs/scrape_xml_ollama_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def graph_config():
"""
return {
"llm": {
"model": "ollama/mistral",
"model": "ollama/glm-5.3-flash:cloud",
"temperature": 0,
"format": "json",
"base_url": "http://localhost:11434",
Expand Down
8 changes: 4 additions & 4 deletions tests/graphs/script_generator_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def graph_config():
"""
return {
"llm": {
"model": "ollama/mistral",
"model": "ollama/glm-5.3-flash:cloud",
"temperature": 0,
"format": "json",
"base_url": "http://localhost:11434",
Expand All @@ -34,6 +34,6 @@ def test_script_creator_graph(graph_config: dict):
config=graph_config,
)
result = smart_scraper_graph.run()
assert result is not None, (
"ScriptCreatorGraph execution failed to produce a result."
)
assert (
result is not None
), "ScriptCreatorGraph execution failed to produce a result."
2 changes: 1 addition & 1 deletion tests/graphs/smart_scraper_ollama_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def graph_config():
"""
return {
"llm": {
"model": "ollama/mistral",
"model": "ollama/glm-5.3-flash:cloud",
"temperature": 0,
"format": "json",
"base_url": "http://localhost:11434",
Expand Down
Loading