added all returns for modes on input_text
Browse files
app.py
CHANGED
@@ -133,9 +133,9 @@ def bot_comms(input_text: str,
|
|
133 |
|
134 |
if input_text == "mode":
|
135 |
if llm_mode == "":
|
136 |
-
|
137 |
else:
|
138 |
-
|
139 |
|
140 |
if input_text == "check cuda":
|
141 |
cuda_info = check_cuda()
|
|
|
133 |
|
134 |
if input_text == "mode":
|
135 |
if llm_mode == "":
|
136 |
+
return "The mode is currently at Loki Default mode"
|
137 |
else:
|
138 |
+
return f"The current mode: {llm_mode}"
|
139 |
|
140 |
if input_text == "check cuda":
|
141 |
cuda_info = check_cuda()
|