Spaces:
Sleeping
Sleeping
added code
Browse files
app.py
CHANGED
@@ -570,7 +570,11 @@ def sendtogemini(inputpath):
|
|
570 |
i = i.strip()
|
571 |
if len(i) > 0:
|
572 |
if i[0] == '@':
|
573 |
-
|
|
|
|
|
|
|
|
|
574 |
data = []
|
575 |
for i in question:
|
576 |
d = {}
|
|
|
570 |
i = i.strip()
|
571 |
if len(i) > 0:
|
572 |
if i[0] == '@':
|
573 |
+
i = i[1:].strip().lower()
|
574 |
+
if i[0] == 'q':
|
575 |
+
question.append(i[1:].strip())
|
576 |
+
else:
|
577 |
+
question.append(i)
|
578 |
data = []
|
579 |
for i in question:
|
580 |
d = {}
|