Update app.py
Browse files
app.py
CHANGED
@@ -90,8 +90,11 @@ def generate(
|
|
90 |
yield "".join(outputs)
|
91 |
|
92 |
|
|
|
|
|
93 |
chat_interface = gr.ChatInterface(
|
94 |
fn=generate,
|
|
|
95 |
additional_inputs=[
|
96 |
gr.Textbox(
|
97 |
value="You are EXAONE model from LG AI Research, a helpful assistant.",
|
|
|
90 |
yield "".join(outputs)
|
91 |
|
92 |
|
93 |
+
chatbot = gr.Chatbot(layout="bubble", bubble_full_width=False)
|
94 |
+
|
95 |
chat_interface = gr.ChatInterface(
|
96 |
fn=generate,
|
97 |
+
chatbot=chatbot,
|
98 |
additional_inputs=[
|
99 |
gr.Textbox(
|
100 |
value="You are EXAONE model from LG AI Research, a helpful assistant.",
|