Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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 |
-
|
|
|
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 |
"""
|