From 66f73c1b32a73bc3c86625222d1a7b712fc3b837 Mon Sep 17 00:00:00 2001 From: oobabooga <112222186+oobabooga@users.noreply.github.com> Date: Wed, 11 Jan 2023 01:36:11 -0300 Subject: [PATCH] Remove default text from output box --- server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server.py b/server.py index 28ab2617..90d8c447 100644 --- a/server.py +++ b/server.py @@ -251,7 +251,7 @@ else: cont = gr.Button("Continue") with gr.Column(): with gr.Tab('Raw'): - output_textbox = gr.Textbox(value=default_text, lines=15, label='Output') + output_textbox = gr.Textbox(lines=15, label='Output') with gr.Tab('Markdown'): markdown = gr.Markdown() with gr.Tab('HTML'):