AC-Angelo93 commited on
Commit
869f770
·
verified ·
1 Parent(s): 8f26ef1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -18,7 +18,7 @@ class BasicAgent:
18
  def __call__(self, question: str) -> str:
19
  # runs graph on each question
20
  answer = self.graph.run(question)
21
- return enswer.replace("FINAL ANSWER:","",1).strip()
22
 
23
  def run_and_submit_all( profile: gr.OAuthProfile | None):
24
  """
 
18
  def __call__(self, question: str) -> str:
19
  # runs graph on each question
20
  answer = self.graph.run(question)
21
+ return answer.replace("FINAL ANSWER:","",1).strip()
22
 
23
  def run_and_submit_all( profile: gr.OAuthProfile | None):
24
  """