aminaj commited on
Commit
29fdb23
·
verified ·
1 Parent(s): e3cf4fe

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +26 -23
app.py CHANGED
@@ -1,24 +1,27 @@
1
- import streamlit as st
2
- from frontend.main_app import render_main_app
3
- from frontend.chat_interface import render_chat_interface
4
-
5
- # Set the page layout to wide for better visual presentation
6
- st.set_page_config(layout="wide")
7
-
8
- def main():
9
- st.title("Resume Analyzer")
10
-
11
- # Create two columns with a 3:2 ratio for layout
12
- col1, col2 = st.columns([3, 2])
13
-
14
- with col1:
15
- # Render the main app in the larger column
16
- render_main_app()
17
-
18
- with col2:
19
- # Render the chat interface in the smaller column
20
- render_chat_interface()
21
-
22
- # Script execution through the 'main' function
23
- if __name__ == "__main__":
 
 
 
24
  main()
 
1
+ import streamlit as st
2
+ from frontend.main_app import render_main_app
3
+ from frontend.chat_interface import render_chat_interface
4
+
5
+ # Set the page layout to wide for better visual presentation
6
+ st.set_page_config(layout="wide")
7
+
8
+ def main():
9
+ st.title("Resume Analyzer")
10
+
11
+ with st.sidebar:
12
+ st.image("resume_analyzer_logo.png", width=150)
13
+
14
+ # Create two columns with a 3:2 ratio for layout
15
+ col1, col2 = st.columns([3, 2])
16
+
17
+ with col1:
18
+ # Render the main app in the larger column
19
+ render_main_app()
20
+
21
+ with col2:
22
+ # Render the chat interface in the smaller column
23
+ render_chat_interface()
24
+
25
+ # Script execution through the 'main' function
26
+ if __name__ == "__main__":
27
  main()