DavidSB commited on
Commit
dded24e
·
1 Parent(s): 7cb0cd1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
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()