Pavithiran commited on
Commit
d545d82
·
verified ·
1 Parent(s): 3d4d1d8

Update app.py

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