added prints for logs
Browse files
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
|