Skip to content
Merged
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
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@ from scrapegraphai.graphs import SmartScraperGraph
graph_config = {
"llm": {
"model": "ollama/llama3.2",
"model_tokens": 8192
"model_tokens": 8192,
Copy link

Copilot AI Jan 7, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Consider adding an inline comment to explain why the "format" parameter is necessary for Ollama, similar to what's done in other examples throughout the codebase. This would help users understand the purpose of this configuration. For reference, see examples like csv_scraper_ollama.py which includes the comment: "Ollama needs the format to be specified explicitly".

Suggested change
"model_tokens": 8192,
"model_tokens": 8192,
# Ollama needs the format to be specified explicitly

Copilot uses AI. Check for mistakes.
"format": "json",
},
"verbose": True,
"headless": False,
Expand Down