- adding Steve's updated confirm box UI

- goal prompts and agent changes to smooth out that interaction and remove listagents duplication
adding extra confirmation for money movement tool
This commit is contained in:
Joshua Smith
2025-04-22 12:22:42 -04:00
parent b4d57cfad6
commit 823208db3c
6 changed files with 177 additions and 104 deletions

View File

@@ -299,22 +299,26 @@ financial_move_money = ToolDefinition(
type="string",
description="email address or account ID of user",
),
ToolArgument(
ToolArgument(
name="accounttype",
type="string",
description="account type, such as checking or savings",
),
ToolArgument(
ToolArgument(
name="amount",
type="string",
description="amount to move in the order",
),
ToolArgument(
ToolArgument(
name="destinationaccount",
type="string",
description="account number to move the money to",
),
ToolArgument(
name="userConfirmation",
type="string",
description="Indication of user's desire to move money",
),
],
)