amudassir786 commited on
Commit
fecf978
1 Parent(s): a249b69

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -1,3 +1,4 @@
 
1
  def bmi(name, height,weight,feeling):
2
  bmi_val = weight / ((height/100) ** 2)
3
  txt_feeling = "Happy" if feeling else "Sad"
 
1
+ import gradio as gr
2
  def bmi(name, height,weight,feeling):
3
  bmi_val = weight / ((height/100) ** 2)
4
  txt_feeling = "Happy" if feeling else "Sad"