sandz7 commited on
Commit
b0fb40d
Β·
1 Parent(s): 3e7a6d0

added prints for logs

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -77,6 +77,7 @@ def llama_generation(input_text: str,
77
  outputs = []
78
  for text in streamer:
79
  outputs.append(text)
 
80
  return "".join(outputs)
81
 
82
  # Let's just make sure the llama is returning as it should and than place that return output into a function making it fit into a base
 
77
  outputs = []
78
  for text in streamer:
79
  outputs.append(text)
80
+ print(outputs)
81
  return "".join(outputs)
82
 
83
  # Let's just make sure the llama is returning as it should and than place that return output into a function making it fit into a base