From 25c9f76ca8de49a0d1205da5337a7f9f6ace11fb Mon Sep 17 00:00:00 2001 From: Eric Gustin <34000337+EricGustin@users.noreply.github.com> Date: Sun, 16 Mar 2025 14:38:04 -0800 Subject: [PATCH] Fix secrets for firecrawl tool (#299) --- toolkits/web/arcade_web/tools/firecrawl.py | 2 +- toolkits/web/pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/toolkits/web/arcade_web/tools/firecrawl.py b/toolkits/web/arcade_web/tools/firecrawl.py index b7efa08b..e0052290 100644 --- a/toolkits/web/arcade_web/tools/firecrawl.py +++ b/toolkits/web/arcade_web/tools/firecrawl.py @@ -125,7 +125,7 @@ async def get_crawl_status( # TODO: Support responses greater than 10 MB. If the response is greater than 10 MB, # then the Firecrawl API response will have a next_url field. -@tool +@tool(requires_secrets=["FIRECRAWL_API_KEY"]) async def get_crawl_data( context: ToolContext, crawl_id: Annotated[str, "The ID of the crawl job"], diff --git a/toolkits/web/pyproject.toml b/toolkits/web/pyproject.toml index a69c172f..161c394f 100644 --- a/toolkits/web/pyproject.toml +++ b/toolkits/web/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "arcade_web" -version = "1.0.0" +version = "1.0.1" description = "LLM tools for web-related tasks" authors = ["Arcade "]