Matt commited on
Commit
3770856
·
1 Parent(s): 3d8b295

Fix inputs

Browse files
Files changed (1) hide show
  1. app.py +5 -3
app.py CHANGED
@@ -17,9 +17,11 @@ conversations = [demo_conversation1, demo_conversation2]
17
 
18
  def apply_chat_template(template):
19
  tokenizer.chat_template = template
20
- without_gen = tokenizer.apply_chat_template(conversation, tokenize=False)
21
- with_gen = tokenizer.apply_chat_template(conversation, tokenize=False, add_generation_prompt=True)
22
- return f"Without generation prompt:\n\n{without_gen}\n\nWith generation prompt:\n\n{with_gen}"
 
 
23
 
24
  iface = gr.Interface(fn=apply_chat_template, inputs="text", outputs="text")
25
  iface.launch()
 
17
 
18
  def apply_chat_template(template):
19
  tokenizer.chat_template = template
20
+ out = ""
21
+ for i, conversation in enumerate(conversations):
22
+ without_gen = tokenizer.apply_chat_template(conversation, tokenize=False)
23
+ with_gen = tokenizer.apply_chat_template(conversation, tokenize=False, add_generation_prompt=True)
24
+ out += f"Conversation {i} without generation prompt:\n\n{without_gen}\n\nConversation {i} with generation prompt:\n\n{with_gen}\n\n"
25
 
26
  iface = gr.Interface(fn=apply_chat_template, inputs="text", outputs="text")
27
  iface.launch()