janmariakowalski commited on
Commit
e70f39b
verified
1 Parent(s): c5ef5dc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -218,7 +218,8 @@ with gr.Blocks(theme=theme, css=".gradio-container {max-width: 960px !important;
218
  with gr.Column(scale=1):
219
  gr.Image(PIXEL_IMAGE_URL, show_label=False, show_download_button=False, container=False, height=200)
220
  output_verdict = gr.Label(label="Wynik analizy", value="")
221
- output_scores = gr.Label(label="Szczeg贸艂owe wyniki", visible=False)
 
222
 
223
  # Define actions
224
  def analyze_and_update(text):
 
218
  with gr.Column(scale=1):
219
  gr.Image(PIXEL_IMAGE_URL, show_label=False, show_download_button=False, container=False, height=200)
220
  output_verdict = gr.Label(label="Wynik analizy", value="")
221
+ with gr.Accordion("Scores", open=False) as accordion_scores:
222
+ output_scores = gr.Label(label="Szczeg贸艂owe wyniki", visible=False)
223
 
224
  # Define actions
225
  def analyze_and_update(text):