Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -135,6 +135,7 @@ entradas = [
|
|
135 |
]
|
136 |
|
137 |
saida = gr.outputs.JSON()
|
|
|
138 |
|
139 |
-
interface = gr.Interface(fn=calcular_valor_imovel, inputs=entradas, outputs=saida, title = "avalia.EVO", description="Método Evolutivo (Terreno + Construção)")
|
140 |
interface.launch()
|
|
|
135 |
]
|
136 |
|
137 |
saida = gr.outputs.JSON()
|
138 |
+
theme=gr.themes.Soft(primary_hue="teal",secondary_hue="teal"),
|
139 |
|
140 |
+
interface = gr.Interface(fn=calcular_valor_imovel, inputs=entradas, outputs=saida, title = "avalia.EVO", description="Método Evolutivo (Terreno + Construção)",theme=theme)
|
141 |
interface.launch()
|