Spaces:
Sleeping
Sleeping
Commit
·
c10777e
1
Parent(s):
557b7cf
Remove access token input from sidebar in app.py to streamline the CV upload process. This change simplifies the user interface by eliminating unnecessary fields.
Browse files
app.py
CHANGED
@@ -21,7 +21,6 @@ Upload your CV once in the sidebar, and the system will reuse the parsed details
|
|
21 |
|
22 |
# Sidebar for Settings and CV Upload
|
23 |
st.sidebar.title("Settings and CV Upload")
|
24 |
-
access_token = st.sidebar.text_input("Enter your Hugging Face Access Token", type="password")
|
25 |
|
26 |
# File Upload for CV in Sidebar
|
27 |
uploaded_file = st.sidebar.file_uploader("Upload your CV (PDF format):", type=["pdf"])
|
|
|
21 |
|
22 |
# Sidebar for Settings and CV Upload
|
23 |
st.sidebar.title("Settings and CV Upload")
|
|
|
24 |
|
25 |
# File Upload for CV in Sidebar
|
26 |
uploaded_file = st.sidebar.file_uploader("Upload your CV (PDF format):", type=["pdf"])
|