Merge pull request #13177 from tth37/fix_firecrawl_loader_default_mode

fix: FireCrawlLoader default mode to scrape
This commit is contained in:
Tim Jaeryang Baek
2025-04-29 08:39:06 -07:00
committed by GitHub

View File

@@ -170,7 +170,7 @@ class SafeFireCrawlLoader(BaseLoader, RateLimitMixin, URLProcessingMixin):
continue_on_failure: bool = True,
api_key: Optional[str] = None,
api_url: Optional[str] = None,
mode: Literal["crawl", "scrape", "map"] = "crawl",
mode: Literal["crawl", "scrape", "map"] = "scrape",
proxy: Optional[Dict[str, str]] = None,
params: Optional[Dict] = None,
):