adrianpierce commited on
Commit
ae16adf
1 Parent(s): 4fcff00

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -27,9 +27,9 @@ serving_size = st.number_input(
27
 
28
  difficulty = st.radio(
29
  "Choose a difficulty level for your recipe.",
30
- ["Beginner", "Home Chef", "Professional"],
31
  captions = [
32
- "Easy recipes with straightforward instructions. Ideal for first-timers or those seeking quick and simple cooking.",
33
  "Recipes with some intricate steps that invite a little challenge. Perfect for regular cooks wanting to expand their repertoire with new ingredients and techniques.",
34
  "Complex recipes that demand a high level of skill and precision. Suited for seasoned cooks aspiring to professional-level sophistication and creativity."
35
  ])
 
27
 
28
  difficulty = st.radio(
29
  "Choose a difficulty level for your recipe.",
30
+ ["Quick & Easy", "Intermediate", "Professional"],
31
  captions = [
32
+ "Easy recipes with straightforward instructions. Ideal for beginners or those seeking quick and simple cooking.",
33
  "Recipes with some intricate steps that invite a little challenge. Perfect for regular cooks wanting to expand their repertoire with new ingredients and techniques.",
34
  "Complex recipes that demand a high level of skill and precision. Suited for seasoned cooks aspiring to professional-level sophistication and creativity."
35
  ])