AruniAnkur commited on
Commit
952a3b6
·
verified ·
1 Parent(s): 62ffff5

added code

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -570,7 +570,11 @@ def sendtogemini(inputpath):
570
  i = i.strip()
571
  if len(i) > 0:
572
  if i[0] == '@':
573
- question.append(i[1:].strip())
 
 
 
 
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 = {}