shukdevdatta123 commited on
Commit
bc01520
·
verified ·
1 Parent(s): 0d3e74e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -89,6 +89,10 @@ if openai_api_key:
89
  if mode == "Course Query Assistant":
90
  st.header("Course Query Assistant")
91
 
 
 
 
 
92
  # Upload course materials
93
  uploaded_files = st.file_uploader("Upload Course Materials (PDFs)", type=["pdf"], accept_multiple_files=True)
94
 
 
89
  if mode == "Course Query Assistant":
90
  st.header("Course Query Assistant")
91
 
92
+ # Display image/logo in the "Course Query Assistant" section (optional)
93
+ course_query_image = Image.open("course_query_logo.png") # Ensure the file is in the correct directory
94
+ st.image(course_query_image, width=150) # Adjust the size as per preference
95
+
96
  # Upload course materials
97
  uploaded_files = st.file_uploader("Upload Course Materials (PDFs)", type=["pdf"], accept_multiple_files=True)
98