You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
timeout=15000, # Request timeout in ms (1000-60000)
309
310
wait=2000, # Wait after page load in ms (0-30000)
310
311
scrolls=3, # Number of scrolls (0-100)
@@ -315,20 +316,6 @@ config = FetchConfig(
315
316
)
316
317
```
317
318
318
-
### LlmConfig
319
-
320
-
Controls LLM behavior for format entries that run an LLM (scrape `json` and `summary` formats). Pass it inside the format entry — it is deprecated at the top level of `extract` and `search` in v2 and is ignored by the API.
321
-
322
-
```python
323
-
from scrapegraph_py import LlmConfig
324
-
325
-
config = LlmConfig(
326
-
model="gpt-4o-mini", # LLM model to use
327
-
temperature=0.3, # Response creativity (0.0-1.0)
328
-
max_tokens=1000, # Maximum response tokens
329
-
chunker="auto", # Content chunking strategy ("auto" or custom config)
0 commit comments