Antoine101 commited on
Commit
4bb782b
·
verified ·
1 Parent(s): 9dbff6f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -21,7 +21,7 @@ class BasicAgent:
21
  def __init__(self, llm_checkpoint):
22
  llm = HuggingFaceEndpoint(repo_id=llm_checkpoint)
23
  chat = ChatHuggingFace(llm=llm, verbose=True)
24
- self.tools = [guest_info_tool]
25
  chat_with_tools = chat.bind_tools(tools)
26
  self.graph = self._build_graph()
27
  print("BasicAgent initialized.")
 
21
  def __init__(self, llm_checkpoint):
22
  llm = HuggingFaceEndpoint(repo_id=llm_checkpoint)
23
  chat = ChatHuggingFace(llm=llm, verbose=True)
24
+ self.tools = []
25
  chat_with_tools = chat.bind_tools(tools)
26
  self.graph = self._build_graph()
27
  print("BasicAgent initialized.")