Update app.py
Browse files
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 |
|