laverdes commited on
Commit
6f0aec7
·
verified ·
1 Parent(s): d679ec7

fix: no more fixed_answer

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -22,7 +22,7 @@ class BasicAgent:
22
  print(f"Agent received question (first 50 chars): {question[:50]}...")
23
  answer = self.workflow(question)
24
  print(f"Agent returning fixed answer: {answer}")
25
- return fixed_answer
26
 
27
 
28
  def run_and_submit_all( profile: gr.OAuthProfile | None):
 
22
  print(f"Agent received question (first 50 chars): {question[:50]}...")
23
  answer = self.workflow(question)
24
  print(f"Agent returning fixed answer: {answer}")
25
+ return answer
26
 
27
 
28
  def run_and_submit_all( profile: gr.OAuthProfile | None):