Update src/streamlit_app.py
Browse files- src/streamlit_app.py +1 -1
src/streamlit_app.py
CHANGED
|
@@ -10,7 +10,7 @@ task = st.text_input("Enter the task you are working on (e.g., data analysis, ma
|
|
| 10 |
python_version = st.selectbox("Select your Python version:", options=["3.7", "3.8", "3.9", "3.10", "3.11","3.12"], index=3)
|
| 11 |
|
| 12 |
# File uploader widget
|
| 13 |
-
uploaded_file = st.file_uploader("Choose a file
|
| 14 |
st.write("Uploaded file:", uploaded_file)
|
| 15 |
|
| 16 |
if uploaded_file is not None:
|
|
|
|
| 10 |
python_version = st.selectbox("Select your Python version:", options=["3.7", "3.8", "3.9", "3.10", "3.11","3.12"], index=3)
|
| 11 |
|
| 12 |
# File uploader widget
|
| 13 |
+
uploaded_file = st.file_uploader("Choose a TXT file with all the library versions available in the colab session")
|
| 14 |
st.write("Uploaded file:", uploaded_file)
|
| 15 |
|
| 16 |
if uploaded_file is not None:
|