Ramja commited on
Commit
86403ca
·
verified ·
1 Parent(s): 7317cb2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -19,8 +19,8 @@ class BasicAgent:
19
  print(f"Agent received question (first 50 chars): {question[:50]}...")
20
  final_question = initial_general_instructions + agent_1_instructions + question + basic_general_instructions
21
  final_answer = agent_1.run(final_question)
22
- print(f"Agent returning fixed answer: {fixed_answer}")
23
- return fixed_answer
24
 
25
  def run_and_submit_all( profile: gr.OAuthProfile | None):
26
  """
 
19
  print(f"Agent received question (first 50 chars): {question[:50]}...")
20
  final_question = initial_general_instructions + agent_1_instructions + question + basic_general_instructions
21
  final_answer = agent_1.run(final_question)
22
+ print(f"Agent returning fixed answer: {final_answer}")
23
+ return final_answer
24
 
25
  def run_and_submit_all( profile: gr.OAuthProfile | None):
26
  """