mateoluksenberg commited on
Commit
18535a8
·
verified ·
1 Parent(s): 8f4afb7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -0
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