Spaces:
Sleeping
Sleeping
| # htmlTemplates.py | |
| css = """ | |
| <style> | |
| .chat-bubble { | |
| border-radius: 10px; | |
| padding: 10px; | |
| margin: 10px 0; | |
| } | |
| </style> | |
| """ | |
| user_template = """ | |
| <div class="chat-bubble" style="background-color:#DCF8C6;"> | |
| <b>User:</b> {{MSG}} | |
| </div> | |
| """ | |
| bot_template = """ | |
| <div class="chat-bubble" style="background-color:#F1F0F0;"> | |
| <b>Bot:</b> {{MSG}} | |
| </div> | |
| """ |