leo-bourrel commited on
Commit
8706267
·
1 Parent(s): 3f940cd

fix: static path

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -50,7 +50,7 @@ with chat_placeholder:
50
  div = f"""
51
  <div class="chat-row
52
  {'' if chat.origin == 'ai' else 'row-reverse'}">
53
- <img class="chat-icon" src="static/{
54
  'ai_icon.png' if chat.origin == 'ai'
55
  else 'user_icon.png'}"
56
  width=32 height=32>
 
50
  div = f"""
51
  <div class="chat-row
52
  {'' if chat.origin == 'ai' else 'row-reverse'}">
53
+ <img class="chat-icon" src="./app/static/{
54
  'ai_icon.png' if chat.origin == 'ai'
55
  else 'user_icon.png'}"
56
  width=32 height=32>