chore: update integration examples and gitignore

- browser_use: migrate to BrowserSession + bundled ChatOpenAI API
- crawl4ai: add browser_mode="cdp" param
- gitignore: add captures/
This commit is contained in:
CloakHQ
2026-04-02 01:32:08 +02:00
parent 1bfd5ca036
commit 1b91a33e51
3 changed files with 6 additions and 7 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ async def main():
)
# Step 2: Connect Crawl4AI to the stealth browser via CDP
browser_config = BrowserConfig(cdp_url="http://127.0.0.1:9243")
browser_config = BrowserConfig(browser_mode="cdp", cdp_url="http://127.0.0.1:9243")
run_config = CrawlerRunConfig()
async with AsyncWebCrawler(config=browser_config) as crawler: