HemaMeena commited on
Commit
0a9cf6a
·
verified ·
1 Parent(s): 74517fc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -76,10 +76,10 @@ def llm_ans(query):
76
  return ans + time_elapsed_str
77
 
78
 
 
 
 
79
 
80
- def predict(message, history):
81
- output = str(llm_ans(message)).replace("\n", "<br/>")
82
- return output
83
 
84
  def get_model(model = CFG.model_name):
85
 
 
76
  return ans + time_elapsed_str
77
 
78
 
79
+ def predict(message, history):
80
+ output = str(llm_ans(message)).replace("\n", "<br/>")
81
+ return output
82
 
 
 
 
83
 
84
  def get_model(model = CFG.model_name):
85