RamezCh commited on
Commit
83f7385
·
verified ·
1 Parent(s): 8bc170d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -13,7 +13,7 @@ llm = HuggingFaceEndpoint(
13
  )
14
 
15
  chat = ChatHuggingFace(llm=llm, verbose=True)
16
- tools = [guest_info_tool]
17
  chat_with_tools = chat.bind_tools(tools)
18
 
19
  # Generate the AgentState and Agent graph
 
13
  )
14
 
15
  chat = ChatHuggingFace(llm=llm, verbose=True)
16
+ tools = [game_info_tool, search_tool]
17
  chat_with_tools = chat.bind_tools(tools)
18
 
19
  # Generate the AgentState and Agent graph