Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
@@ -117,7 +117,8 @@ with gr.Blocks(theme=gr.themes.Soft()) as iface:
|
|
117 |
value="BLIP-2"
|
118 |
)
|
119 |
|
120 |
-
|
|
|
121 |
gr.Markdown("""
|
122 |
### 📝 Características dos Modelos:
|
123 |
|
@@ -151,7 +152,7 @@ with gr.Blocks(theme=gr.themes.Soft()) as iface:
|
|
151 |
|
152 |
with gr.Column():
|
153 |
# Output
|
154 |
-
with gr.Box()
|
155 |
gr.Markdown("### 📊 Resultado da Análise")
|
156 |
output_text = gr.Markdown()
|
157 |
|
|
|
117 |
value="BLIP-2"
|
118 |
)
|
119 |
|
120 |
+
# Substitui gr.Box() por gr.Group() para compatibilidade
|
121 |
+
with gr.Group():
|
122 |
gr.Markdown("""
|
123 |
### 📝 Características dos Modelos:
|
124 |
|
|
|
152 |
|
153 |
with gr.Column():
|
154 |
# Output
|
155 |
+
with gr.Group(): # Substitui gr.Box() por gr.Group()
|
156 |
gr.Markdown("### 📊 Resultado da Análise")
|
157 |
output_text = gr.Markdown()
|
158 |
|