mirror of
https://github.com/temporal-community/temporal-ai-agent.git
synced 2026-03-15 22:18:09 +01:00
adding fin goals and tools
This commit is contained in:
@@ -13,6 +13,9 @@ from .hr.book_pto import book_pto
|
||||
from .hr.future_pto_calc import future_pto_calc
|
||||
from .hr.checkpaybankstatus import checkpaybankstatus
|
||||
|
||||
from .fin.check_account_valid import check_account_valid
|
||||
from .fin.get_account_balances import get_account_balance
|
||||
|
||||
from .give_hint import give_hint
|
||||
from .guess_location import guess_location
|
||||
|
||||
@@ -44,6 +47,10 @@ def get_handler(tool_name: str):
|
||||
return future_pto_calc
|
||||
if tool_name == "CheckPayBankStatus":
|
||||
return checkpaybankstatus
|
||||
if tool_name == "FinCheckAccountIsValid":
|
||||
return check_account_valid
|
||||
if tool_name == "FinCheckAccountBalance":
|
||||
return get_account_balance
|
||||
if tool_name == "GiveHint":
|
||||
return give_hint
|
||||
if tool_name == "GuessLocation":
|
||||
|
||||
Reference in New Issue
Block a user