Fix secrets for firecrawl tool (#299)
This commit is contained in:
parent
8bfd6755ee
commit
25c9f76ca8
2 changed files with 2 additions and 2 deletions
|
|
@ -125,7 +125,7 @@ async def get_crawl_status(
|
||||||
|
|
||||||
# TODO: Support responses greater than 10 MB. If the response is greater than 10 MB,
|
# 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.
|
# then the Firecrawl API response will have a next_url field.
|
||||||
@tool
|
@tool(requires_secrets=["FIRECRAWL_API_KEY"])
|
||||||
async def get_crawl_data(
|
async def get_crawl_data(
|
||||||
context: ToolContext,
|
context: ToolContext,
|
||||||
crawl_id: Annotated[str, "The ID of the crawl job"],
|
crawl_id: Annotated[str, "The ID of the crawl job"],
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "arcade_web"
|
name = "arcade_web"
|
||||||
version = "1.0.0"
|
version = "1.0.1"
|
||||||
description = "LLM tools for web-related tasks"
|
description = "LLM tools for web-related tasks"
|
||||||
authors = ["Arcade <dev@arcade.dev>"]
|
authors = ["Arcade <dev@arcade.dev>"]
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue