Update app.py
Browse files
app.py
CHANGED
@@ -26,6 +26,7 @@ def predict(input, history=[]):
|
|
26 |
import gradio as gr
|
27 |
|
28 |
demo = gr.Interface(fn=predict,
|
|
|
29 |
inputs=["text", "state"],
|
30 |
outputs=["chatbot", "state"])
|
31 |
|
|
|
26 |
import gradio as gr
|
27 |
|
28 |
demo = gr.Interface(fn=predict,
|
29 |
+
examples=["How many"],
|
30 |
inputs=["text", "state"],
|
31 |
outputs=["chatbot", "state"])
|
32 |
|