Safwanahmad619 commited on
Commit
314cd9c
·
verified ·
1 Parent(s): 3f0b79c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -44,9 +44,9 @@ with gr.Blocks() as demo:
44
  gr.Markdown("**Glucose Guardian** is a personalized meal planning tool designed specifically for diabetic patients. By entering your sugar levels and dietary preferences, Glucose Guardian generates meal plans that are tailored to help you manage your blood sugar levels effectively.")
45
 
46
  with gr.Row():
47
- fasting_sugar = gr.Number(label="Fasting Sugar Levels (mg/dL)", value=0, min=0, max=500, step=1)
48
- pre_meal_sugar = gr.Number(label="Pre-Meal Sugar Levels (mg/dL)", value=0, min=0, max=500, step=1)
49
- post_meal_sugar = gr.Number(label="Post-Meal Sugar Levels (mg/dL)", value=0, min=0, max=500, step=1)
50
 
51
  dietary_preferences = gr.Textbox(label="Dietary Preferences (e.g., vegetarian, low-carb)")
52
 
 
44
  gr.Markdown("**Glucose Guardian** is a personalized meal planning tool designed specifically for diabetic patients. By entering your sugar levels and dietary preferences, Glucose Guardian generates meal plans that are tailored to help you manage your blood sugar levels effectively.")
45
 
46
  with gr.Row():
47
+ fasting_sugar = gr.Number(label="Fasting Sugar Levels (mg/dL)", value=0)
48
+ pre_meal_sugar = gr.Number(label="Pre-Meal Sugar Levels (mg/dL)", value=0)
49
+ post_meal_sugar = gr.Number(label="Post-Meal Sugar Levels (mg/dL)", value=0)
50
 
51
  dietary_preferences = gr.Textbox(label="Dietary Preferences (e.g., vegetarian, low-carb)")
52