ll7098ll commited on
Commit
1fea65a
·
verified ·
1 Parent(s): efe6595

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -98,15 +98,15 @@ tabs = st.sidebar.tabs(["🍝 안주 입력", "🍇 주류 입력"])
98
 
99
  with tabs[0]:
100
  st.markdown("#### 안주를 입력해 주세요:")
101
- input_text_anjoo = st.text_input("예: 치킨, 육회, 치즈 플래터 등", key="input_text_anjoo")
102
 
103
  with tabs[1]:
104
  st.markdown("#### 주류를 입력해 주세요:")
105
- input_text_liquor = st.text_input("예: 맥주, 와인, 소주 등", key="input_text_liquor")
106
 
107
  # 상황 또는 분위기 입력 (사이드바)
108
  st.sidebar.markdown("#### 상황이나 분위기를 입력해 주세요:")
109
- situation = st.sidebar.text_area("예: 친구들과의 모임, 로맨틱한 데이트, 가족과의 저녁 식사 등", height=100, key="situation")
110
 
111
  # 페어링 추천 받기 버튼
112
  generate_button = st.sidebar.button("🍻 페어링 추천 받기")
 
98
 
99
  with tabs[0]:
100
  st.markdown("#### 안주를 입력해 주세요:")
101
+ input_text_anjoo = st.text_input("예: 치킨, 육회, 치즈 플래터 등")
102
 
103
  with tabs[1]:
104
  st.markdown("#### 주류를 입력해 주세요:")
105
+ input_text_liquor = st.text_input("예: 맥주, 와인, 소주 등")
106
 
107
  # 상황 또는 분위기 입력 (사이드바)
108
  st.sidebar.markdown("#### 상황이나 분위기를 입력해 주세요:")
109
+ situation = st.sidebar.text_area("예: 친구들과의 모임, 로맨틱한 데이트, 가족과의 저녁 식사 등", height=100)
110
 
111
  # 페어링 추천 받기 버튼
112
  generate_button = st.sidebar.button("🍻 페어링 추천 받기")