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 "]