text-generation-webui/modules/html_generator.py

357 lines
9.4 KiB
Python
Raw Normal View History

2023-01-07 02:14:08 +00:00
'''
2023-01-16 19:35:45 +00:00
This is a library for formatting GPT-4chan and chat outputs as nice HTML.
2023-01-07 02:14:08 +00:00
'''
2023-02-23 17:41:42 +00:00
import base64
import os
2023-01-07 02:14:08 +00:00
import re
from io import BytesIO
from pathlib import Path
2023-01-07 02:14:08 +00:00
from PIL import Image
# This is to store chat profile pictures as base64-encoded thumbnails
image_cache = {}
2023-01-15 19:43:31 +00:00
def generate_basic_html(s):
2023-02-16 00:13:12 +00:00
css = """
.container {
max-width: 600px;
margin-left: auto;
margin-right: auto;
2023-02-18 02:08:34 +00:00
background-color: rgb(31, 41, 55);
2023-02-16 00:13:12 +00:00
padding:3em;
}
.container p {
2023-02-19 01:14:57 +00:00
font-size: 16px !important;
2023-02-18 02:08:34 +00:00
color: white !important;
2023-02-16 00:13:12 +00:00
margin-bottom: 22px;
2023-02-19 01:14:57 +00:00
line-height: 1.4 !important;
2023-02-16 00:13:12 +00:00
}
"""
s = '\n'.join([f'<p>{line}</p>' for line in s.split('\n')])
s = f'<style>{css}</style><div class="container">{s}</div>'
2023-01-15 19:43:31 +00:00
return s
2023-01-07 02:14:08 +00:00
def process_post(post, c):
t = post.split('\n')
number = t[0].split(' ')[1]
if len(t) > 1:
src = '\n'.join(t[1:])
else:
src = ''
src = re.sub('>', '&gt;', src)
src = re.sub('(&gt;&gt;[0-9]*)', '<span class="quote">\\1</span>', src)
src = re.sub('\n', '<br>\n', src)
src = f'<blockquote class="message">{src}\n'
src = f'<span class="name">Anonymous </span> <span class="number">No.{number}</span>\n{src}'
return src
2023-01-11 04:10:11 +00:00
def generate_4chan_html(f):
2023-01-07 02:14:08 +00:00
css = """
#parent #container {
2023-01-07 02:14:08 +00:00
background-color: #eef2ff;
padding: 17px;
}
#parent #container .reply {
2023-01-07 02:14:08 +00:00
background-color: rgb(214, 218, 240);
border-bottom-color: rgb(183, 197, 217);
border-bottom-style: solid;
border-bottom-width: 1px;
border-image-outset: 0;
border-image-repeat: stretch;
border-image-slice: 100%;
border-image-source: none;
border-image-width: 1;
border-left-color: rgb(0, 0, 0);
border-left-style: none;
border-left-width: 0px;
border-right-color: rgb(183, 197, 217);
border-right-style: solid;
border-right-width: 1px;
border-top-color: rgb(0, 0, 0);
border-top-style: none;
border-top-width: 0px;
color: rgb(0, 0, 0);
display: table;
font-family: arial, helvetica, sans-serif;
font-size: 13.3333px;
margin-bottom: 4px;
margin-left: 0px;
margin-right: 0px;
margin-top: 4px;
overflow-x: hidden;
overflow-y: hidden;
2023-02-18 14:07:55 +00:00
padding-bottom: 4px;
2023-01-07 02:14:08 +00:00
padding-left: 2px;
padding-right: 2px;
2023-02-18 14:07:55 +00:00
padding-top: 4px;
2023-01-07 02:14:08 +00:00
}
#parent #container .number {
2023-01-07 02:14:08 +00:00
color: rgb(0, 0, 0);
font-family: arial, helvetica, sans-serif;
font-size: 13.3333px;
width: 342.65px;
2023-02-18 14:07:55 +00:00
margin-right: 7px;
2023-01-07 02:14:08 +00:00
}
#parent #container .op {
2023-01-07 02:14:08 +00:00
color: rgb(0, 0, 0);
font-family: arial, helvetica, sans-serif;
font-size: 13.3333px;
margin-bottom: 8px;
margin-left: 0px;
margin-right: 0px;
margin-top: 4px;
overflow-x: hidden;
overflow-y: hidden;
}
#parent #container .op blockquote {
margin-left: 0px !important;
2023-01-07 02:14:08 +00:00
}
#parent #container .name {
2023-01-07 02:14:08 +00:00
color: rgb(17, 119, 67);
font-family: arial, helvetica, sans-serif;
font-size: 13.3333px;
font-weight: 700;
margin-left: 7px;
}
#parent #container .quote {
2023-01-07 02:14:08 +00:00
color: rgb(221, 0, 0);
font-family: arial, helvetica, sans-serif;
font-size: 13.3333px;
text-decoration-color: rgb(221, 0, 0);
text-decoration-line: underline;
text-decoration-style: solid;
text-decoration-thickness: auto;
}
#parent #container .greentext {
2023-01-07 02:14:08 +00:00
color: rgb(120, 153, 34);
font-family: arial, helvetica, sans-serif;
font-size: 13.3333px;
}
#parent #container blockquote {
margin: 0px !important;
2023-01-07 02:14:08 +00:00
margin-block-start: 1em;
margin-block-end: 1em;
margin-inline-start: 40px;
margin-inline-end: 40px;
margin-top: 13.33px !important;
margin-bottom: 13.33px !important;
margin-left: 40px !important;
margin-right: 40px !important;
}
#parent #container .message {
color: black;
border: none;
2023-01-07 02:14:08 +00:00
}
"""
posts = []
post = ''
c = -2
for line in f.splitlines():
line += "\n"
if line == '-----\n':
continue
elif line.startswith('--- '):
c += 1
if post != '':
src = process_post(post, c)
posts.append(src)
post = line
else:
post += line
if post != '':
src = process_post(post, c)
posts.append(src)
for i in range(len(posts)):
if i == 0:
posts[i] = f'<div class="op">{posts[i]}</div>\n'
else:
posts[i] = f'<div class="reply">{posts[i]}</div>\n'
output = ''
output += f'<style>{css}</style><div id="parent"><div id="container">'
2023-01-07 02:14:08 +00:00
for post in posts:
output += post
output += '</div></div>'
2023-01-07 02:14:08 +00:00
output = output.split('\n')
for i in range(len(output)):
2023-01-07 04:20:10 +00:00
output[i] = re.sub(r'^(&gt;(.*?)(<br>|</div>))', r'<span class="greentext">\1</span>', output[i])
output[i] = re.sub(r'^<blockquote class="message">(&gt;(.*?)(<br>|</div>))', r'<blockquote class="message"><span class="greentext">\1</span>', output[i])
2023-01-07 02:14:08 +00:00
output = '\n'.join(output)
return output
def image_to_base64(path):
mtime = os.stat(path).st_mtime
if (path in image_cache and mtime != image_cache[path][0]) or (path not in image_cache):
img = Image.open(path)
img.thumbnail((100, 100))
img_buffer = BytesIO()
img.convert('RGB').save(img_buffer, format='PNG')
image_cache[path] = [mtime, base64.b64encode(img_buffer.getvalue()).decode("utf-8")]
return image_cache[path][1]
2023-01-21 18:04:13 +00:00
def generate_chat_html(history, name1, name2, character):
css = """
.chat {
margin-left: auto;
margin-right: auto;
max-width: 800px;
2023-01-15 21:16:46 +00:00
height: 66.67vh;
overflow-y: auto;
padding-right: 20px;
display: flex;
flex-direction: column-reverse;
}
.message {
display: grid;
2023-02-17 03:35:17 +00:00
grid-template-columns: 60px 1fr;
2023-02-20 23:49:21 +00:00
padding-bottom: 25px;
font-size: 15px;
2023-02-17 14:30:04 +00:00
font-family: Helvetica, Arial, sans-serif;
2023-02-14 02:01:14 +00:00
line-height: 1.428571429;
}
.circle-you {
2023-02-17 03:35:17 +00:00
width: 50px;
height: 50px;
2023-02-20 21:41:38 +00:00
background-color: rgb(238, 78, 59);
border-radius: 50%;
}
.circle-bot {
2023-02-17 03:35:17 +00:00
width: 50px;
height: 50px;
background-color: rgb(59, 78, 244);
border-radius: 50%;
}
.circle-bot img, .circle-you img {
border-radius: 50%;
width: 100%;
height: 100%;
object-fit: cover;
}
.text {
}
.text p {
margin-top: 5px;
}
.username {
font-weight: bold;
}
.message-body {
}
2023-02-14 23:38:21 +00:00
.message-body img {
2023-02-14 23:38:21 +00:00
max-width: 300px;
max-height: 300px;
border-radius: 20px;
}
.message-body p {
margin-bottom: 0 !important;
font-size: 15px !important;
line-height: 1.428571429 !important;
}
.dark .message-body p em {
color: rgb(138, 138, 138) !important;
}
.message-body p em {
color: rgb(110, 110, 110) !important;
}
"""
output = ''
output += f'<style>{css}</style><div class="chat" id="chat">'
2023-01-19 19:46:46 +00:00
img = ''
2023-01-19 19:46:46 +00:00
for i in [
f"characters/{character}.png",
f"characters/{character}.jpg",
f"characters/{character}.jpeg",
"img_bot.png",
"img_bot.jpg",
"img_bot.jpeg"
2023-01-19 19:46:46 +00:00
]:
path = Path(i)
if path.exists():
img = f'<img src="data:image/png;base64,{image_to_base64(path)}">'
2023-01-19 19:46:46 +00:00
break
2023-02-08 02:26:02 +00:00
img_me = ''
for i in ["img_me.png", "img_me.jpg", "img_me.jpeg"]:
path = Path(i)
if path.exists():
img_me = f'<img src="data:image/png;base64,{image_to_base64(path)}">'
break
for i,_row in enumerate(history[::-1]):
row = _row.copy()
2023-01-30 11:36:58 +00:00
row[0] = re.sub(r"(\*\*)([^\*\n]*)(\*\*)", r"<b>\2</b>", row[0])
row[1] = re.sub(r"(\*\*)([^\*\n]*)(\*\*)", r"<b>\2</b>", row[1])
2023-01-20 00:16:11 +00:00
row[0] = re.sub(r"(\*)([^\*\n]*)(\*)", r"<em>\2</em>", row[0])
row[1] = re.sub(r"(\*)([^\*\n]*)(\*)", r"<em>\2</em>", row[1])
p = '\n'.join([f"<p>{x}</p>" for x in row[1].split('\n')])
output += f"""
<div class="message">
<div class="circle-bot">
{img}
</div>
<div class="text">
<div class="username">
{name2}
</div>
<div class="message-body">
{p}
</div>
</div>
</div>
"""
2023-01-19 19:46:46 +00:00
if not (i == len(history)-1 and len(row[0]) == 0):
p = '\n'.join([f"<p>{x}</p>" for x in row[0].split('\n')])
output += f"""
<div class="message">
<div class="circle-you">
2023-02-08 02:26:02 +00:00
{img_me}
2023-01-19 19:46:46 +00:00
</div>
<div class="text">
<div class="username">
{name1}
</div>
<div class="message-body">
2023-01-19 19:46:46 +00:00
{p}
</div>
</div>
</div>
2023-01-19 19:46:46 +00:00
"""
output += "</div>"
return output