Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: tool mode to firecrawl components #6235

Merged
merged 9 commits into from
Feb 17, 2025
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ class FirecrawlCrawlApi(Component):
display_name="URL",
required=True,
info="The URL to scrape.",
tool_mode=True,
),
IntInput(
name="timeout",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ class FirecrawlScrapeApi(Component):
display_name="URL",
required=True,
info="The URL to scrape.",
tool_mode=True,
),
IntInput(
name="timeout",
Expand Down
Loading