Skincare-by-Dr-Aisha-Ghias commited on
Commit
f9a36d0
1 Parent(s): 678b96b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -53,10 +53,10 @@ if uploaded_file:
53
  for msg in st.session_state.messages:
54
  avatar_image = None # Default avatar
55
  if msg["role"] == "assistant":
56
- avatar_image = # Set the assistant's avatar image
57
 
58
  # Render the message with the appropriate avatar
59
- st.chat_message(msg["role"], avatar="LOGO.png").write(msg["content"])
60
 
61
 
62
  # User input
 
53
  for msg in st.session_state.messages:
54
  avatar_image = None # Default avatar
55
  if msg["role"] == "assistant":
56
+ avatar_image = "LOGO.PNG" # Set the assistant's avatar image
57
 
58
  # Render the message with the appropriate avatar
59
+ st.chat_message(msg["role"], avatar=avatar_image).write(msg["content"])
60
 
61
 
62
  # User input