Spaces:
Sleeping
Sleeping
nicholasKluge
commited on
Commit
·
ca33912
1
Parent(s):
863d87d
Update app.py
Browse files
app.py
CHANGED
@@ -102,6 +102,7 @@ with gr.Blocks(theme='freddyaboulton/dracula_revamped') as demo:
|
|
102 |
gr.Markdown("""<h1><center>Aira Demo 🤓💬</h1></center>""")
|
103 |
gr.Markdown(intro)
|
104 |
|
|
|
105 |
chatbot = gr.Chatbot(label="Aira",
|
106 |
height=500,
|
107 |
show_copy_button=True,
|
@@ -110,6 +111,8 @@ with gr.Blocks(theme='freddyaboulton/dracula_revamped') as demo:
|
|
110 |
line_breaks=True,
|
111 |
likeable=False,
|
112 |
layout='panel')
|
|
|
|
|
113 |
|
114 |
msg = gr.Textbox(label="Write a question or instruction to Aira ...", placeholder="What is the capital of Brazil?")
|
115 |
|
|
|
102 |
gr.Markdown("""<h1><center>Aira Demo 🤓💬</h1></center>""")
|
103 |
gr.Markdown(intro)
|
104 |
|
105 |
+
"""
|
106 |
chatbot = gr.Chatbot(label="Aira",
|
107 |
height=500,
|
108 |
show_copy_button=True,
|
|
|
111 |
line_breaks=True,
|
112 |
likeable=False,
|
113 |
layout='panel')
|
114 |
+
"""
|
115 |
+
chatbot = gr.Chatbot(label="Aira").style(height=500)
|
116 |
|
117 |
msg = gr.Textbox(label="Write a question or instruction to Aira ...", placeholder="What is the capital of Brazil?")
|
118 |
|