EstebanDC commited on
Commit
662c051
1 Parent(s): 640f78e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -7
app.py CHANGED
@@ -47,13 +47,8 @@ description = "XXXXXXXXXXXXXXXXXXXXXXX."
47
  app = gr.Interface(
48
  RCS,
49
  inputs=[
50
- gr.inputs.Textbox(
51
- lines=2,
52
- label="Pregúntame sobre BioMedicina o temas relacionados. Puedes simplemente preguntarme aquí y darle al botón verde de abajo que pone Enviar.",
53
- placeholder="Escribe aquí tu pregunta",
54
- optional=True,),
55
  gr.inputs.Radio(['1', '2', '3'], label="Jet system: 1=Single. 2=Double. 3=Triple"),
56
- gr.inputs.Radio(['1', '2', '3', '4'], label="Soil type: 1=Coarse without fines. 2=Coarse with fines. 3=Fine. 4=Organic"),
57
  gr.Number(value=1, label="Nspt"),
58
  gr.Number(value=1, label="W/C"),
59
  gr.Number(value=1, label="Grout pressure (MPa)"),
@@ -61,7 +56,7 @@ app = gr.Interface(
61
 
62
  ],
63
  outputs=[gr.Text(label="UCS (MPa)")],
64
- description=description,
65
  article=article,
66
  )
67
 
 
47
  app = gr.Interface(
48
  RCS,
49
  inputs=[
 
 
 
 
 
50
  gr.inputs.Radio(['1', '2', '3'], label="Jet system: 1=Single. 2=Double. 3=Triple"),
51
+ gr.inputs.Radio(['1', '2', '3', '4'], label="Soil type: 1=Coarse without fines. 2=Coarse with fines. 3=Fine. 4=Organic"),
52
  gr.Number(value=1, label="Nspt"),
53
  gr.Number(value=1, label="W/C"),
54
  gr.Number(value=1, label="Grout pressure (MPa)"),
 
56
 
57
  ],
58
  outputs=[gr.Text(label="UCS (MPa)")],
59
+ title=title,
60
  article=article,
61
  )
62