rphrp1985 commited on
Commit
ffe142e
·
verified ·
1 Parent(s): 11ec7bf

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -15,7 +15,9 @@ processor = AutoProcessor.from_pretrained(ckpt)
15
 
16
  @spaces.GPU
17
  def bot_streaming(message, history, max_new_tokens=250):
18
-
 
 
19
  txt = message["text"]
20
  ext_buffer = f"{txt}"
21
 
 
15
 
16
  @spaces.GPU
17
  def bot_streaming(message, history, max_new_tokens=250):
18
+
19
+ print("message ", message)
20
+ print("\n\n\nhostory ", history)
21
  txt = message["text"]
22
  ext_buffer = f"{txt}"
23