adding fin goals and tools

This commit is contained in:
Joshua Smith
2025-03-20 13:37:51 -04:00
parent 850404e0d5
commit c3084eec41
9 changed files with 200 additions and 11 deletions

View File

@@ -252,4 +252,36 @@ paycheck_bank_integration_status_check = ToolDefinition(
description="email address of user",
),
],
)
financial_check_account_is_valid = ToolDefinition(
name="FinCheckAccountIsValid",
description="Check if an account is valid by email address or account ID. "
"Returns the account status, valid or invalid. ",
arguments=[
ToolArgument(
name="email",
type="string",
description="email address of user",
),
ToolArgument(
name="account_id",
type="string",
description="account ID of user",
),
],
)
financial_get_account_balances = ToolDefinition(
name="FinCheckAccountBalance",
description="Get account balance for your accounts. "
"Returns the account balances of your accounts. ",
arguments=[
ToolArgument(
name="accountkey",
type="string",
description="email address or account ID of user",
),
],
)