| css = ''' | |
| <style> | |
| .chat-message { | |
| padding: 1.5rem; border-radius: 0.5rem; margin-bottom: 1rem; display: flex | |
| } | |
| .chat-message.user { | |
| background-color: #475063 | |
| } | |
| .chat-message.bot { | |
| background-color: #6EA0E1 | |
| } | |
| .chat-message .avatar { | |
| width: 15%; | |
| } | |
| .chat-message .avatar img { | |
| max-width: 68px; | |
| max-height: 68px; | |
| border-radius: 50%; | |
| object-fit: cover; | |
| } | |
| .chat-message .message { | |
| width: 85%; | |
| padding: 0 1.5rem; | |
| color: #fff; | |
| } | |
| ''' | |
| bot_template = ''' | |
| <div class="chat-message bot"> | |
| <div class="avatar"> | |
| <img src="https://i.ibb.co/brCd5Pd/bot.png"> | |
| </div> | |
| <div class="message">{{MSG}}</div> | |
| </div> | |
| ''' | |
| user_template = ''' | |
| <div class="chat-message user"> | |
| <div class="avatar"> | |
| <img src="https://i.ibb.co/6N3DLXK/Person.png"> | |
| </div> | |
| <div class="message">{{MSG}}</div> | |
| </div> | |
| ''' |