Spaces:
Runtime error
Runtime error
Update app.py
Browse filesremove input box values
app.py
CHANGED
@@ -40,11 +40,11 @@ tokenizer, model, label_tbl, loc_tbl = md_loading()
|
|
40 |
|
41 |
|
42 |
# ํ
์คํธ input ๋ฐ์ค
|
43 |
-
business = st.text_input('์ฌ์
์ฒด๋ช
'
|
44 |
-
business_work = st.text_input('์ฌ์
์ฒด ํ๋์ผ'
|
45 |
-
work_department = st.text_input('๊ทผ๋ฌด๋ถ์'
|
46 |
-
work_position = st.text_input('์ง์ฑ
'
|
47 |
-
what_do_i = st.text_input('๋ด๊ฐ ํ๋ ์ผ'
|
48 |
|
49 |
# md_input: ๋ชจ๋ธ์ ์
๋ ฅํ input ๊ฐ ์ ์
|
50 |
md_input = ', '.join([business, business_work, work_department, work_position, what_do_i])
|
|
|
40 |
|
41 |
|
42 |
# ํ
์คํธ input ๋ฐ์ค
|
43 |
+
business = st.text_input('์ฌ์
์ฒด๋ช
').replace(',', '')
|
44 |
+
business_work = st.text_input('์ฌ์
์ฒด ํ๋์ผ').replace(',', '')
|
45 |
+
work_department = st.text_input('๊ทผ๋ฌด๋ถ์').replace(',', '')
|
46 |
+
work_position = st.text_input('์ง์ฑ
').replace(',', '')
|
47 |
+
what_do_i = st.text_input('๋ด๊ฐ ํ๋ ์ผ').replace(',', '')
|
48 |
|
49 |
# md_input: ๋ชจ๋ธ์ ์
๋ ฅํ input ๊ฐ ์ ์
|
50 |
md_input = ', '.join([business, business_work, work_department, work_position, what_do_i])
|