Spaces:
Runtime error
Runtime error
commenting out csv part of the app (streamlit)
Browse files- app/app.py +1 -1
app/app.py
CHANGED
@@ -11,7 +11,7 @@ st.write("This app is a demo of the LLM model for data cleaning. It is a work in
|
|
11 |
|
12 |
# text box or csv upload
|
13 |
text_input = st.text_input("Enter text", "")
|
14 |
-
csv_file = st.file_uploader("Upload CSV", type=['csv'])
|
15 |
|
16 |
# button to run data cleaning API on text via c class in openai_chat_completion.py
|
17 |
if st.button("Run Data Cleaning API"):
|
|
|
11 |
|
12 |
# text box or csv upload
|
13 |
text_input = st.text_input("Enter text", "")
|
14 |
+
# csv_file = st.file_uploader("Upload CSV", type=['csv'])
|
15 |
|
16 |
# button to run data cleaning API on text via c class in openai_chat_completion.py
|
17 |
if st.button("Run Data Cleaning API"):
|