Raphael Glon commited on
Commit
43b82d7
·
unverified ·
1 Parent(s): 4b9ff75

Signed-off-by: Raphael Glon <[email protected]>

Files changed (1) hide show
  1. app.py +1 -0
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