Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -132,6 +132,8 @@ with gr.Blocks(css=css) as demo:
|
|
132 |
b1.click( predict, [inputs, top_p, temperature, openai_api_key, chat_counter, chatbot, state], [chatbot, state, chat_counter],)
|
133 |
b1.click(reset_textbox, [], [inputs])
|
134 |
inputs.submit(reset_textbox, [], [inputs])
|
135 |
-
|
|
|
|
|
136 |
#gr.Markdown(description)
|
137 |
demo.queue().launch(debug=True)
|
|
|
132 |
b1.click( predict, [inputs, top_p, temperature, openai_api_key, chat_counter, chatbot, state], [chatbot, state, chat_counter],)
|
133 |
b1.click(reset_textbox, [], [inputs])
|
134 |
inputs.submit(reset_textbox, [], [inputs])
|
135 |
+
|
136 |
+
gr.Examples(["My name is Clara and I am"], inputs=[])
|
137 |
+
|
138 |
#gr.Markdown(description)
|
139 |
demo.queue().launch(debug=True)
|