Antoine101 commited on
Commit
0ccf69a
·
verified ·
1 Parent(s): 2230a9e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -3
app.py CHANGED
@@ -29,9 +29,7 @@ llm = HuggingFaceEndpoint(
29
 
30
  chat = ChatHuggingFace(llm=llm, verbose=True)
31
 
32
- tools = [
33
- search_tool
34
- ]
35
  chat_with_tools = chat.bind_tools(tools)
36
 
37
  def assistant(state: MessagesState):
 
29
 
30
  chat = ChatHuggingFace(llm=llm, verbose=True)
31
 
32
+ tools = []
 
 
33
  chat_with_tools = chat.bind_tools(tools)
34
 
35
  def assistant(state: MessagesState):