Pavithiran commited on
Commit
4537787
·
verified ·
1 Parent(s): b45f9ef

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -38,14 +38,16 @@ def respond(
38
  ):
39
  token = message.choices[0].delta.content
40
 
41
- # If the token is not a valid JSON string, add it to the response
42
  try:
43
  json.loads(token)
44
  except json.JSONDecodeError:
45
  response += token
 
 
46
 
47
  response += token
48
- yield response
49
  except Exception as e:
50
  yield f"Error: {e}"
51
  """
 
38
  ):
39
  token = message.choices[0].delta.content
40
 
41
+ # If the token is not a valid JSON string, yield it as is
42
  try:
43
  json.loads(token)
44
  except json.JSONDecodeError:
45
  response += token
46
+ yield response
47
+ continue
48
 
49
  response += token
50
+ yield response
51
  except Exception as e:
52
  yield f"Error: {e}"
53
  """