marme commited on
Commit
d5c70ed
·
1 Parent(s): 046dab3

show processing message

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -15,7 +15,7 @@ with gr.Blocks() as demo:
15
  button = gr.Button("Run", variant="primary")
16
  text = gr.Textbox(label='Input Text', max_length=50000)
17
  gr.Markdown("## Result chunks:")
18
- chunks = gr.Markdown()
19
 
20
  button.click(run, [text, model], chunks)
21
 
 
15
  button = gr.Button("Run", variant="primary")
16
  text = gr.Textbox(label='Input Text', max_length=50000)
17
  gr.Markdown("## Result chunks:")
18
+ chunks = gr.Markdown("---")
19
 
20
  button.click(run, [text, model], chunks)
21