Answer_From_PDFs / htmlTemplates.py
rbbist's picture
Create htmlTemplates.py
1916620 verified
raw
history blame contribute delete
514 Bytes
css = '''
<style>
.chat-message {
padding: 1rem;
border-radius: 0.5rem;
margin-bottom: 1rem;
display: flex;
}
.chat-message.user {
background-color: #DCF8C6;
justify-content: flex-end;
}
.chat-message.bot {
background-color: #F1F0F0;
justify-content: flex-start;
}
</style>
'''
user_template = '''
<div class="chat-message user">
<div class="message">{{MSG}}</div>
</div>
'''
bot_template = '''
<div class="chat-message bot">
<div class="message">{{MSG}}</div>
</div>
'''