diff --git a/llm_demo/orchestrator/langchain_tools/tools.py b/llm_demo/orchestrator/langchain_tools/tools.py index 1704a1a9..d73c7930 100644 --- a/llm_demo/orchestrator/langchain_tools/tools.py +++ b/llm_demo/orchestrator/langchain_tools/tools.py @@ -276,7 +276,7 @@ async def initialize_tools(client: aiohttp.ClientSession): BASE_URL, client, ) - # TODO: Remove the hardcoded values and replace with actual values on successful login. + # TODO: Remove the hardcoded bounded values with actual user data on successful login. toolbox_client.set_bounded_params( { "user_id": "12345678900", @@ -286,48 +286,6 @@ async def initialize_tools(client: aiohttp.ClientSession): ) return await toolbox_client.load_toolset() - # toolbox_client = ToolboxClient( - # BASE_URL, - # client, - # ) - # # TODO: Remove the hardcoded values and replace with actual values on successful login. - # # toolbox_client.set_bounded_params( - # # { - # # "user_id": "12345678900", - # # "user_name": "Someone", - # # "user_email": "something@somewhere.com", - # # } - # # ) - # return await toolbox_client.load_toolset() - - # toolbox_client = ToolboxClient( - # BASE_URL, - # client, - # ) - # # TODO: Remove the hardcoded values and replace with actual values on successful login. - # # toolbox_client.set_bounded_params( - # # { - # # "user_id": "12345678900", - # # "user_name": "Someone", - # # "user_email": "something@somewhere.com", - # # } - # # ) - # return await toolbox_client.load_toolset() - - # toolbox_client = ToolboxClient( - # BASE_URL, - # client, - # ) - # # TODO: Remove the hardcoded values and replace with actual values on successful login. - # # toolbox_client.set_bounded_params( - # # { - # # "user_id": "12345678900", - # # "user_name": "Someone", - # # "user_email": "something@somewhere.com", - # # } - # # ) - # return await toolbox_client.load_toolset() - def get_confirmation_needing_tools(): return ["Insert Ticket"]