Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -156,7 +156,9 @@ theme = gr.themes.Default(
|
|
156 |
)
|
157 |
|
158 |
# A URL to a freely licensed image of a Eurasian Jay (S贸jka)
|
159 |
-
JAY_IMAGE_URL = "https://sojka.m31ai.pl/sojka.png"
|
|
|
|
|
160 |
|
161 |
# Final corrected and working version of the interface layout
|
162 |
with gr.Blocks(theme=theme, css=".gradio-container {max-width: 960px !important; margin: auto;}") as demo:
|
@@ -214,7 +216,8 @@ with gr.Blocks(theme=theme, css=".gradio-container {max-width: 960px !important;
|
|
214 |
|
215 |
# Right column for RESULTS
|
216 |
with gr.Column(scale=1):
|
217 |
-
|
|
|
218 |
output_verdict = gr.Label(label="Wynik analizy", value="Czekam na tekst do analizy...")
|
219 |
output_scores = gr.Label(label="Szczeg贸艂owe wyniki", visible=False)
|
220 |
|
|
|
156 |
)
|
157 |
|
158 |
# A URL to a freely licensed image of a Eurasian Jay (S贸jka)
|
159 |
+
JAY_IMAGE_URL = "https://sojka.m31ai.pl/images/sojka.png"
|
160 |
+
JAY_IMAGE_URL = "https://sojka.m31ai.pl/images/pixel.png"
|
161 |
+
|
162 |
|
163 |
# Final corrected and working version of the interface layout
|
164 |
with gr.Blocks(theme=theme, css=".gradio-container {max-width: 960px !important; margin: auto;}") as demo:
|
|
|
216 |
|
217 |
# Right column for RESULTS
|
218 |
with gr.Column(scale=1):
|
219 |
+
gr.Image(PIXEL_IMAGE_URL, show_label=False, show_download_button=False, container=False, width=200)
|
220 |
+
|
221 |
output_verdict = gr.Label(label="Wynik analizy", value="Czekam na tekst do analizy...")
|
222 |
output_scores = gr.Label(label="Szczeg贸艂owe wyniki", visible=False)
|
223 |
|