mrmtaeb commited on
Commit
af468f4
·
verified ·
1 Parent(s): 445423e

Update src/interface/ui.py

Browse files
Files changed (1) hide show
  1. src/interface/ui.py +4 -4
src/interface/ui.py CHANGED
@@ -12,7 +12,7 @@ def create_interface(call_model):
12
  st.session_state.chat_history = []
13
 
14
  # === Background Image ===
15
- background_image_path = os.path.abspath("assets/uwf-page-edited.jpg")
16
  print("DEBUG: Looking for background image at:", background_image_path)
17
  print("DEBUG: File exists?", os.path.exists(background_image_path))
18
 
@@ -48,9 +48,9 @@ def create_interface(call_model):
48
  # === Header Section ===
49
  col1, col2 = st.columns([1, 3])
50
  with col1:
51
- image_path = os.path.abspath("assets/argie-argonaut-gif-edited.png")
52
- print("DEBUG: Looking for background image at:", image_path)
53
- print("DEBUG: File exists?", os.path.exists(image_path))
54
  if os.path.exists(image_path):
55
  st.image(image_path, width=200)
56
  with col2:
 
12
  st.session_state.chat_history = []
13
 
14
  # === Background Image ===
15
+ background_image_path = os.path.join(os.getcwd(), "src", "interface", "assets", "uwf-page-edited.jpg")
16
  print("DEBUG: Looking for background image at:", background_image_path)
17
  print("DEBUG: File exists?", os.path.exists(background_image_path))
18
 
 
48
  # === Header Section ===
49
  col1, col2 = st.columns([1, 3])
50
  with col1:
51
+ bot_image_path = os.path.join(os.getcwd(), "src", "interface", "assets", "argie-argonaut-gif-edited.png")
52
+ print("DEBUG: Looking for logo image at:", bot_image_path)
53
+ print("DEBUG: File exists?", os.path.exists(bot_image_path))
54
  if os.path.exists(image_path):
55
  st.image(image_path, width=200)
56
  with col2: