VoVanPhuc commited on
Commit
64e4be7
·
verified ·
1 Parent(s): 5c41930

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -24,7 +24,7 @@ def call_predict_api(image, private_key=None):
24
  accumulated = ""
25
  for line in response:
26
  if line:
27
- accumulated += line.decode("utf-8").replace("\n", "\n\n")
28
  yield accumulated
29
 
30
 
 
24
  accumulated = ""
25
  for line in response:
26
  if line:
27
+ accumulated += line.decode("utf-8")#.replace("\n", "\n\n")
28
  yield accumulated
29
 
30