Spaces:
Sleeping
Sleeping
Raphael Glon
commited on
wip
Browse filesSigned-off-by: Raphael Glon <[email protected]>
app.py
CHANGED
|
@@ -114,6 +114,7 @@ def generate_stream(message: str, history: List[Tuple[str, str]]):
|
|
| 114 |
output = ""
|
| 115 |
for new_text in streamer:
|
| 116 |
output += new_text
|
|
|
|
| 117 |
yield output
|
| 118 |
|
| 119 |
|
|
|
|
| 114 |
output = ""
|
| 115 |
for new_text in streamer:
|
| 116 |
output += new_text
|
| 117 |
+
LOG.info("NEW TEXT: %s, OUTPUT: %s", new_text, output)
|
| 118 |
yield output
|
| 119 |
|
| 120 |
|