IAMTFRMZA commited on
Commit
db82163
·
verified ·
1 Parent(s): 691e8b4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -0
app.py CHANGED
@@ -51,6 +51,17 @@ st.markdown("""
51
  if "thread_id" not in st.session_state:
52
  st.session_state["thread_id"] = None
53
 
 
 
 
 
 
 
 
 
 
 
 
54
  # Inline layout for chat input + clear button
55
  input_col, clear_col = st.columns([9, 1])
56
 
 
51
  if "thread_id" not in st.session_state:
52
  st.session_state["thread_id"] = None
53
 
54
+ # Carfind Icon + Text above chat input
55
+ st.markdown(
56
+ """
57
+ <div style='text-align: center; margin-top: 20px; margin-bottom: -10px;'>
58
+ <img src='https://www.carfind.co.za/images/Carfind-Icon.svg' width='50' style='margin-bottom: 4px;'/>
59
+ <div style='font-size: 14px; color: gray;'>Powered by Carfind</div>
60
+ </div>
61
+ """,
62
+ unsafe_allow_html=True
63
+ )
64
+
65
  # Inline layout for chat input + clear button
66
  input_col, clear_col = st.columns([9, 1])
67