Update app.py
Browse files
app.py
CHANGED
|
@@ -153,16 +153,15 @@ chat_interface = gr.ChatInterface(
|
|
| 153 |
undo_btn=None,
|
| 154 |
chatbot=gr.Chatbot(avatar_images=('user.png', 'bot.png'), bubble_full_width = False),
|
| 155 |
examples=[
|
|
|
|
| 156 |
["How much should I invest in order to win?"],
|
| 157 |
["What happened in the last round?"],
|
| 158 |
-
["What is my probability to win if I do not invest anything?"],
|
| 159 |
["What is my probability to win if I do not share anything?"],
|
| 160 |
-
["Can you explain the rules very briefly again?"],
|
| 161 |
],
|
| 162 |
)
|
| 163 |
|
| 164 |
with gr.Blocks(css="style.css") as demo:
|
| 165 |
-
gr.Markdown(DESCRIPTION)
|
| 166 |
#gr.DuplicateButton(value="Duplicate Space for private use", elem_id="duplicate-button")
|
| 167 |
chat_interface.render()
|
| 168 |
#gr.Markdown(LICENSE)
|
|
|
|
| 153 |
undo_btn=None,
|
| 154 |
chatbot=gr.Chatbot(avatar_images=('user.png', 'bot.png'), bubble_full_width = False),
|
| 155 |
examples=[
|
| 156 |
+
["Can you explain the rules very briefly again?"],
|
| 157 |
["How much should I invest in order to win?"],
|
| 158 |
["What happened in the last round?"],
|
|
|
|
| 159 |
["What is my probability to win if I do not share anything?"],
|
|
|
|
| 160 |
],
|
| 161 |
)
|
| 162 |
|
| 163 |
with gr.Blocks(css="style.css") as demo:
|
| 164 |
+
#gr.Markdown(DESCRIPTION)
|
| 165 |
#gr.DuplicateButton(value="Duplicate Space for private use", elem_id="duplicate-button")
|
| 166 |
chat_interface.render()
|
| 167 |
#gr.Markdown(LICENSE)
|