mskov commited on
Commit
16c65be
·
1 Parent(s): 11103c0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -91,7 +91,7 @@ def inference(audio, state=""):
91
  print("Object type of response: ", type(response))
92
  #infered = list(map(lambda x: x.split(',')[0], infers))
93
  #print("Infered type is: ", type(infered))
94
- state += infers
95
  print("STATE ", state)
96
 
97
 
 
91
  print("Object type of response: ", type(response))
92
  #infered = list(map(lambda x: x.split(',')[0], infers))
93
  #print("Infered type is: ", type(infered))
94
+ state += str(infers) + " "
95
  print("STATE ", state)
96
 
97