Update app.py
Browse files
app.py
CHANGED
@@ -62,5 +62,12 @@ with gr.Blocks() as demo:
|
|
62 |
state = gr.State()
|
63 |
agent_state = gr.State()
|
64 |
btn.click(chat, [inp, state],[chatbot, state])
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
65 |
if __name__ == '__main__':
|
66 |
demo.launch()
|
|
|
62 |
state = gr.State()
|
63 |
agent_state = gr.State()
|
64 |
btn.click(chat, [inp, state],[chatbot, state])
|
65 |
+
gr.Examples(
|
66 |
+
examples=[
|
67 |
+
"What is BMW doing about sustainability?",
|
68 |
+
"What is the future of BMW?"
|
69 |
+
],
|
70 |
+
inputs=message,
|
71 |
+
)
|
72 |
if __name__ == '__main__':
|
73 |
demo.launch()
|