From a7869d291b362f9dad36ffb913e4c9d02c0a0ca4 Mon Sep 17 00:00:00 2001 From: Edwin Jose Date: Mon, 17 Feb 2025 08:10:22 -0500 Subject: [PATCH] feat: tool mode to firecrawl components (#6235) tool mode to firecrawl Co-authored-by: Gabriel Luiz Freitas Almeida --- .../base/langflow/components/firecrawl/firecrawl_crawl_api.py | 1 + .../base/langflow/components/firecrawl/firecrawl_scrape_api.py | 1 + 2 files changed, 2 insertions(+) diff --git a/src/backend/base/langflow/components/firecrawl/firecrawl_crawl_api.py b/src/backend/base/langflow/components/firecrawl/firecrawl_crawl_api.py index ab9550d42..0e85c8c2b 100644 --- a/src/backend/base/langflow/components/firecrawl/firecrawl_crawl_api.py +++ b/src/backend/base/langflow/components/firecrawl/firecrawl_crawl_api.py @@ -26,6 +26,7 @@ class FirecrawlCrawlApi(Component): display_name="URL", required=True, info="The URL to scrape.", + tool_mode=True, ), IntInput( name="timeout", diff --git a/src/backend/base/langflow/components/firecrawl/firecrawl_scrape_api.py b/src/backend/base/langflow/components/firecrawl/firecrawl_scrape_api.py index 18defab85..735686285 100644 --- a/src/backend/base/langflow/components/firecrawl/firecrawl_scrape_api.py +++ b/src/backend/base/langflow/components/firecrawl/firecrawl_scrape_api.py @@ -30,6 +30,7 @@ class FirecrawlScrapeApi(Component): display_name="URL", required=True, info="The URL to scrape.", + tool_mode=True, ), IntInput( name="timeout",