Sandiago21 commited on
Commit
be1fc47
·
verified ·
1 Parent(s): 42cc20f

Update app.py to enable model run

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -50,9 +50,9 @@ class BasicAgent:
50
  prompt_templates=prompt_templates
51
  )
52
 
53
- # agent_answer = agent.run(question)
54
 
55
- # print(f"Agent Answer: {agent_answer}")
56
 
57
  return fixed_answer
58
 
 
50
  prompt_templates=prompt_templates
51
  )
52
 
53
+ agent_answer = agent.run(question)
54
 
55
+ print(f"Agent Answer: {agent_answer}")
56
 
57
  return fixed_answer
58