Mohammad Haghir commited on
Commit
91edf5a
·
1 Parent(s): 4112ad5

tool update

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -39,6 +39,7 @@ class BasicAgent:
39
  self.graph = self.create_graph()
40
 
41
  def __call__(self, question: str) -> str:
 
42
  response = (self.graph).invoke({"messages": question})
43
  return response["messages"]
44
 
 
39
  self.graph = self.create_graph()
40
 
41
  def __call__(self, question: str) -> str:
42
+ print("question: ", question)
43
  response = (self.graph).invoke({"messages": question})
44
  return response["messages"]
45