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)
323
+
wait:2000, // Wait after page load in ms (0-30000)
324
+
scrolls:3, // Number of scrolls (0-100)
325
+
country:'us', // Proxy country code (ISO 3166-1 alpha-2)
342
326
headers: { 'X-Custom':'header' },
343
327
cookies: { key:'value' },
344
-
mock:false, // Enable mock mode for testing
328
+
mock:false, // Enable mock mode for testing
345
329
}
346
330
```
347
331
348
-
### LlmConfig
349
-
350
-
Controls LLM behavior for format entries that run an LLM (scrape `json` and `summary` formats). Pass it inside the format entry — it is not accepted at the top level of `extract` or `search` in v2.
351
-
352
-
```javascript
353
-
{
354
-
model:"gpt-4o-mini", // LLM model to use
355
-
temperature:0.3, // Response creativity (0-1)
356
-
maxTokens:1000, // Maximum response tokens
357
-
chunker: { // Content chunking strategy
358
-
size:"dynamic", // Chunk size (number or "dynamic")
0 commit comments