Zendesk who_am_i tool. --------- Co-authored-by: Francisco Liberal <francisco@arcade.dev>
26 lines
775 B
Python
26 lines
775 B
Python
from typing import Annotated, Any
|
|
|
|
from arcade_tdk import ToolContext, tool
|
|
from arcade_tdk.auth import OAuth2
|
|
|
|
from arcade_zendesk.who_am_i_util import build_who_am_i_response
|
|
|
|
|
|
@tool(
|
|
requires_auth=OAuth2(id="zendesk", scopes=["read"]),
|
|
requires_secrets=["ZENDESK_SUBDOMAIN"],
|
|
)
|
|
async def who_am_i(
|
|
context: ToolContext,
|
|
) -> Annotated[
|
|
dict[str, Any],
|
|
"Get comprehensive user profile and Zendesk account information.",
|
|
]:
|
|
"""
|
|
Get comprehensive user profile and Zendesk account information.
|
|
|
|
This tool provides detailed information about the authenticated user including
|
|
their name, email, role, organization details, and Zendesk account context.
|
|
"""
|
|
user_info = await build_who_am_i_response(context)
|
|
return dict(user_info)
|