APRG commited on
Commit
b592301
·
verified ·
1 Parent(s): 2c90892

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -43,7 +43,7 @@ class BasicAgent:
43
  print(type(prompt))
44
  print(type(question))
45
  print(type(prompt + question))
46
- answer = self.agent.run(prompt + question))
47
  print(type(answer))
48
  print(f"Agent returning answer: {str(answer)}")
49
  return str(answer).replace("FINAL ANSWER:", "").strip()
 
43
  print(type(prompt))
44
  print(type(question))
45
  print(type(prompt + question))
46
+ answer = self.agent.run(prompt + question)
47
  print(type(answer))
48
  print(f"Agent returning answer: {str(answer)}")
49
  return str(answer).replace("FINAL ANSWER:", "").strip()