Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -279,6 +279,9 @@ def simple_chat(message: dict, temperature: float = 0.8, max_length: int = 4096,
|
|
279 |
print(" ")
|
280 |
print("------")
|
281 |
|
|
|
|
|
|
|
282 |
except Exception as e:
|
283 |
return PlainTextResponse(f"Error: {str(e)}")
|
284 |
|
|
|
279 |
print(" ")
|
280 |
print("------")
|
281 |
|
282 |
+
results_text = buffer
|
283 |
+
|
284 |
+
return PlainTextResponse(results_text)
|
285 |
except Exception as e:
|
286 |
return PlainTextResponse(f"Error: {str(e)}")
|
287 |
|