Update app.py
Browse files
app.py
CHANGED
@@ -15,5 +15,5 @@ def chatbot(input_text):
|
|
15 |
response = tokenizer.decode(chat_history_ids[:, input_ids.shape[-1]:][0], skip_special_tokens=True)
|
16 |
return response
|
17 |
|
18 |
-
iface = gr.Interface(fn=chatbot, inputs="text", outputs="text").launch(
|
19 |
iface.launch()
|
|
|
15 |
response = tokenizer.decode(chat_history_ids[:, input_ids.shape[-1]:][0], skip_special_tokens=True)
|
16 |
return response
|
17 |
|
18 |
+
iface = gr.Interface(fn=chatbot, inputs="text", outputs="text").launch()
|
19 |
iface.launch()
|