Fix secrets for firecrawl tool (#299)

This commit is contained in:
Eric Gustin 2025-03-16 14:38:04 -08:00 committed by GitHub
parent 8bfd6755ee
commit 25c9f76ca8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

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

View file

@ -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 <dev@arcade.dev>"]