Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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,
|
42 |
try:
|
43 |
json.loads(token)
|
44 |
except json.JSONDecodeError:
|
45 |
response += token
|
|
|
|
|
46 |
|
47 |
response += token
|
48 |
-
|
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 |
"""
|