Fix reference in arcade docs Python example template to USER_ID instead of TOOL_NAME (#579)

This commit is contained in:
Renato Byrro 2025-09-25 11:08:19 -03:00 committed by GitHub
parent ed9e9901f5
commit a270472a09
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -130,7 +130,7 @@ TOOL_NAME = "{tool_fully_qualified_name}"
auth_response = client.tools.authorize( auth_response = client.tools.authorize(
tool_name=TOOL_NAME, tool_name=TOOL_NAME,
user_id=TOOL_NAME user_id=USER_ID,
) )
if auth_response.status != "completed": if auth_response.status != "completed":

View file

@ -1,6 +1,6 @@
[project] [project]
name = "arcade-ai" name = "arcade-ai"
version = "2.2.2" version = "2.2.3"
description = "Arcade.dev - Tool Calling platform for Agents" description = "Arcade.dev - Tool Calling platform for Agents"
readme = "README.md" readme = "README.md"
license = {file = "LICENSE"} license = {file = "LICENSE"}