Initial add of ecommercie - order status goal and tools

This commit is contained in:
Laine
2025-04-10 16:57:15 -04:00
parent c18a40b502
commit aba934e8b4
6 changed files with 221 additions and 0 deletions

View File

@@ -17,6 +17,9 @@ 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 .ecommerce.get_order_status import get_order_status
from .ecommerce.track_package import track_package
from .give_hint import give_hint
from .guess_location import guess_location
@@ -54,6 +57,10 @@ def get_handler(tool_name: str):
return get_account_balance
if tool_name == "FinMoveMoneyOrder":
return move_money
if tool_name == "GetOrderStatus":
return get_order_status
if tool_name == "TrackPackage":
return track_package
if tool_name == "GiveHint":
return give_hint
if tool_name == "GuessLocation":