Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -15,8 +15,6 @@ def chatbot(input,history=[]):
|
|
15 |
|
16 |
import gradio as gr
|
17 |
|
18 |
-
app = gr.Interface(fn=chatbot,inputs=["text","state"],
|
19 |
-
outputs=["chatbot","state"],
|
20 |
-
title="ChatGPT Demo")
|
21 |
|
22 |
app.launch()
|
|
|
15 |
|
16 |
import gradio as gr
|
17 |
|
18 |
+
app = gr.Interface(fn=chatbot,inputs=["text","state"],outputs=["chatbot","state"],title="ChatGPT Demo")
|
|
|
|
|
19 |
|
20 |
app.launch()
|