rohan13 commited on
Commit
768fd1a
Β·
1 Parent(s): 2eb28f0

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +2 -0
main.py CHANGED
@@ -26,6 +26,8 @@ def run(question):
26
  if "Could not parse LLM output:" in ve.args[0] and question.lower().startswith(tuple(question_starters)) and not question.lower().endswith('?'):
27
  question = question + '?'
28
  result = agent_chain.run(question)
 
 
29
 
30
  return result
31
 
 
26
  if "Could not parse LLM output:" in ve.args[0] and question.lower().startswith(tuple(question_starters)) and not question.lower().endswith('?'):
27
  question = question + '?'
28
  result = agent_chain.run(question)
29
+ finally:
30
+ print(result)
31
 
32
  return result
33