wip checkin

This commit is contained in:
Joshua Smith
2025-04-11 17:43:34 -04:00
parent 585791e826
commit 5b58f30e0d
7 changed files with 81 additions and 8 deletions

View File

@@ -316,4 +316,23 @@ financial_move_money = ToolDefinition(
description="account number to move the money to",
),
],
)
financial_move_money = ToolDefinition(
name="FinCheckAccountSubmitLoanApproval",
description="Submit a loan application. "
"Returns the loan status. ",
arguments=[
ToolArgument(
name="accountkey",
type="string",
description="email address or account ID of user",
),
ToolArgument(
name="amount",
type="string",
description="amount requested for the loan",
),
],
)