Spaces:
Runtime error
Runtime error
fixing bot
Browse files
app.py
CHANGED
@@ -15,6 +15,5 @@ def func (message):
|
|
15 |
return tokenizer.decode(result[0])
|
16 |
|
17 |
import gradio as gr
|
18 |
-
app = gr.Interface(fn=func, inputs="textbox"
|
19 |
-
|
20 |
app.launch()
|
|
|
15 |
return tokenizer.decode(result[0])
|
16 |
|
17 |
import gradio as gr
|
18 |
+
app = gr.Interface(fn=func, inputs="textbox", outputs="textbox", title="Conversation Bot")
|
|
|
19 |
app.launch()
|