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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -38,14 +38,14 @@ def respond(
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
 
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, 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
  """