Omnibus commited on
Commit
bbaad49
·
1 Parent(s): 3e1afa2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -72,8 +72,9 @@ def call_search(purpose, task, history, action_input):
72
  })
73
  print (return_list)
74
  c=0
75
- for " " in this_obj:
76
- c +=1
 
77
  print (c)
78
  if c > MAX_DATA:
79
  print("compressing...")
 
72
  })
73
  print (return_list)
74
  c=0
75
+ for i in range(0,len(this_obj)):
76
+ if i == " ":
77
+ c +=1
78
  print (c)
79
  if c > MAX_DATA:
80
  print("compressing...")