sandz7 commited on
Commit
721715f
1 Parent(s): cb9d047

returned the list outputs

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -67,8 +67,8 @@ def chat_llama3_8b(message: str,
67
 
68
  outputs = []
69
  for text in streamer:
70
- print(text)
71
- return text
72
 
73
 
74
  # Gradio block
 
67
 
68
  outputs = []
69
  for text in streamer:
70
+ outputs.append(text)
71
+ return outputs
72
 
73
 
74
  # Gradio block