CoolFace
Apppublic

mgaleano/QA-Environment

sourceHugging Faceupdated 3y agoView on Hugging Face
0likes
htmlTemplates.py44 linesDownload Raw Back to root
1css = '''2<style>3.chat-message {4    padding: 1.5rem; border-radius: 0.5rem; margin-bottom: 1rem; display: flex5}6.chat-message.user {7    background-color: #4750638}9.chat-message.bot {10    background-color: #6EA0E111}12.chat-message .avatar {13  width: 15%;14}15.chat-message .avatar img {16  max-width: 68px;17  max-height: 68px;18  border-radius: 50%;19  object-fit: cover;20}21.chat-message .message {22  width: 85%;23  padding: 0 1.5rem;24  color: #fff;25}26'''27 28bot_template = '''29<div class="chat-message bot">30    <div class="avatar">31        <img src="https://i.ibb.co/brCd5Pd/bot.png">32    </div>33    <div class="message">{{MSG}}</div>34</div>35'''36 37user_template = '''38<div class="chat-message user">39    <div class="avatar">40        <img src="https://i.ibb.co/6N3DLXK/Person.png">41    </div>    42    <div class="message">{{MSG}}</div>43</div>44'''