Update app.py
Browse files
app.py
CHANGED
@@ -64,7 +64,7 @@ with gr.Blocks() as demo:
|
|
64 |
gr.Markdown("### Upload your CSV file to calculate BMI and daily calorie needs for each person.")
|
65 |
|
66 |
# File Upload
|
67 |
-
file_upload = gr.File(label="Upload CSV File", type="
|
68 |
|
69 |
# Output for the result
|
70 |
output = gr.DataFrame(headers=["Name", "BMI", "BMI Category", "Daily Calorie Needs (kcal)"])
|
|
|
64 |
gr.Markdown("### Upload your CSV file to calculate BMI and daily calorie needs for each person.")
|
65 |
|
66 |
# File Upload
|
67 |
+
file_upload = gr.File(label="Upload CSV File", type="filepath")
|
68 |
|
69 |
# Output for the result
|
70 |
output = gr.DataFrame(headers=["Name", "BMI", "BMI Category", "Daily Calorie Needs (kcal)"])
|