adding move money scenario - still a bit rough but it works

This commit is contained in:
Joshua Smith
2025-03-26 13:21:13 -04:00
parent 4eeab32cb2
commit a3ec7b045a
7 changed files with 216 additions and 21 deletions

View File

@@ -15,6 +15,7 @@ from .hr.checkpaybankstatus import checkpaybankstatus
from .fin.check_account_valid import check_account_valid
from .fin.get_account_balances import get_account_balance
from .fin.move_money import move_money
from .give_hint import give_hint
from .guess_location import guess_location
@@ -51,6 +52,8 @@ def get_handler(tool_name: str):
return check_account_valid
if tool_name == "FinCheckAccountBalance":
return get_account_balance
if tool_name == "FinMoveMoneyOrder":
return move_money
if tool_name == "GiveHint":
return give_hint
if tool_name == "GuessLocation":