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