drclab commited on
Commit
8cbc55f
1 Parent(s): 3ef9f64

Accordion Close

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -23,7 +23,7 @@ with gr.Blocks() as demo:
23
  output = gr.Textbox(label='What You Get ...')
24
  greet_btn = gr.Button("==> ChatGPT will complete ==>").style(size='lg')
25
 
26
- with gr.Accordion("Are We Learning or Machine Learning ?"):
27
  gr.Markdown("""![Robot](https://drclab-dulun-store.hf.space/img/ml.jpg)""")
28
 
29
  greet_btn.click(fn=greet, inputs=name, outputs=output)
 
23
  output = gr.Textbox(label='What You Get ...')
24
  greet_btn = gr.Button("==> ChatGPT will complete ==>").style(size='lg')
25
 
26
+ with gr.Accordion(label = "Are We Learning or Machine Learning ?", open = False):
27
  gr.Markdown("""![Robot](https://drclab-dulun-store.hf.space/img/ml.jpg)""")
28
 
29
  greet_btn.click(fn=greet, inputs=name, outputs=output)