kamran-r123 commited on
Commit
492d4b7
·
1 Parent(s): baf9a7f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -66,7 +66,7 @@ def generateS(prompt, history, system_prompt, temperature=0.2, max_new_tokens=51
66
  output = ""
67
 
68
  for response in stream:
69
- output += response
70
  yield output
71
  return output
72
 
 
66
  output = ""
67
 
68
  for response in stream:
69
+ output += json.dumps(response)
70
  yield output
71
  return output
72