two more HR scenarios added

This commit is contained in:
Joshua Smith
2025-03-18 15:44:03 -04:00
parent f2ab6c03e8
commit bd1cfbad01
5 changed files with 88 additions and 1 deletions

View File

@@ -239,4 +239,17 @@ book_pto_tool = ToolDefinition(
description="Indication of user's desire to book PTO",
),
],
)
paycheck_bank_integration_status_check = ToolDefinition(
name="CheckPayBankStatus",
description="Check status of Bank Integration for Paychecks. "
"Returns the status of the bank integration, connected or disconnected. ",
arguments=[
ToolArgument(
name="email",
type="string",
description="email address of user",
),
],
)