burtenshaw HF Staff commited on
Commit
fa7335c
·
verified ·
1 Parent(s): fabb44a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -24,6 +24,8 @@ tokenizer, model = load_model()
24
  @spaces.GPU
25
  def generate(message, history):
26
  conversation = history + [message]
 
 
27
 
28
  inputs = tokenizer.apply_chat_template(
29
  conversation,
 
24
  @spaces.GPU
25
  def generate(message, history):
26
  conversation = history + [message]
27
+
28
+ print(conversation)
29
 
30
  inputs = tokenizer.apply_chat_template(
31
  conversation,