Update app.py
Browse files
app.py
CHANGED
@@ -9,6 +9,8 @@ import os
|
|
9 |
|
10 |
# Set up Streamlit UI
|
11 |
st.title('Educational Assistant')
|
|
|
|
|
12 |
st.header('Summary, Quiz Generator, Q&A, and Study Plan')
|
13 |
st.sidebar.title('Drop your PDF here')
|
14 |
|
|
|
9 |
|
10 |
# Set up Streamlit UI
|
11 |
st.title('Educational Assistant')
|
12 |
+
img = Image.open("Untitled.png") # Ensure the file is in the correct directory
|
13 |
+
st.image(img, use_container_width=True) # Adjust the size as per preference
|
14 |
st.header('Summary, Quiz Generator, Q&A, and Study Plan')
|
15 |
st.sidebar.title('Drop your PDF here')
|
16 |
|