TuanScientist commited on
Commit
77feed5
1 Parent(s): dd5982a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -126,7 +126,9 @@ def do(height, weight, age, gender, activities, goal):
126
 
127
 
128
  # Create a Gradio interface
129
- interface = gr.Interface(fn=do, inputs=inputs, outputs=outputs,allow_flagging="never")
 
 
130
 
131
  # Launch the interface
132
  interface.launch()
 
126
 
127
 
128
  # Create a Gradio interface
129
+ interface = gr.Interface(fn=do, inputs=inputs, outputs=outputs,allow_flagging="never",
130
+ title="Đo lường chỉ số sức khỏe",
131
+ description="Ứng dụng này giúp bạn đo lường chỉ số sức khỏe thông qua chỉ số BMI, BMR và TDEE và đưa ra lượng calo cần thiết mỗi ngày dựa trên mục tiêu của bạn.") # Description of the web app)
132
 
133
  # Launch the interface
134
  interface.launch()