Skincare-by-Dr-Aisha-Ghias commited on
Commit
41c14df
1 Parent(s): 9196b86

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -0
app.py CHANGED
@@ -12,6 +12,19 @@ HEADERS = {"Authorization": bearer}
12
  # Chat history
13
  stringi = ""
14
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  # Initialize session state if it doesn't exist
16
  if "messages" not in st.session_state:
17
  st.session_state["messages"] = [{"role": "assistant", "content": "How can I assist you in dermatology?"}]
 
12
  # Chat history
13
  stringi = ""
14
 
15
+ # Inject custom CSS to change the avatar size
16
+ custom_css = """
17
+ <style>
18
+ /* Replace your selector and styles */
19
+ .css-h1sjnp.eeusbqq0 {
20
+ width: 100px !important;
21
+ height: 100px !important;
22
+ }
23
+ </style>
24
+ """
25
+ st.markdown(custom_css, unsafe_allow_html=True)
26
+
27
+
28
  # Initialize session state if it doesn't exist
29
  if "messages" not in st.session_state:
30
  st.session_state["messages"] = [{"role": "assistant", "content": "How can I assist you in dermatology?"}]