Update app.py
Browse files
app.py
CHANGED
@@ -64,7 +64,7 @@ with gr.Blocks(title="LLM with TTS",head=head) as demo:
|
|
64 |
msg = gr.Textbox()
|
65 |
with gr.Row():
|
66 |
clear = gr.ClearButton([msg, chatbot])
|
67 |
-
submit = gr.Button("Submit").click(call_generate_text, inputs=[msg, chatbot], outputs=[msg,chatbot])
|
68 |
|
69 |
gr.HTML("""
|
70 |
<br>
|
|
|
64 |
msg = gr.Textbox()
|
65 |
with gr.Row():
|
66 |
clear = gr.ClearButton([msg, chatbot])
|
67 |
+
submit = gr.Button("Submit",variant="primary").click(call_generate_text, inputs=[msg, chatbot], outputs=[msg,chatbot])
|
68 |
|
69 |
gr.HTML("""
|
70 |
<br>
|