mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2024-10-01 01:26:03 -04:00
Store thumbnails as files instead of base64 strings
This improves the UI responsiveness for large histories.
This commit is contained in:
parent
a08802bf70
commit
43b6ab8673
@ -2,7 +2,7 @@ from pathlib import Path
|
|||||||
|
|
||||||
import gradio as gr
|
import gradio as gr
|
||||||
|
|
||||||
from modules.html_generator import image_to_base64
|
from modules.html_generator import get_image_cache
|
||||||
|
|
||||||
|
|
||||||
def generate_html():
|
def generate_html():
|
||||||
@ -64,7 +64,7 @@ def generate_html():
|
|||||||
path = Path(i)
|
path = Path(i)
|
||||||
if path.exists():
|
if path.exists():
|
||||||
try:
|
try:
|
||||||
image_html = f'<img src="data:image/png;base64,{image_to_base64(path)}">'
|
image_html = f'<img src="file/{get_image_cache(path)}">'
|
||||||
break
|
break
|
||||||
except:
|
except:
|
||||||
continue
|
continue
|
||||||
|
@ -4,15 +4,13 @@ This is a library for formatting GPT-4chan and chat outputs as nice HTML.
|
|||||||
|
|
||||||
'''
|
'''
|
||||||
|
|
||||||
import base64
|
|
||||||
import os
|
import os
|
||||||
import re
|
import re
|
||||||
from io import BytesIO
|
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
|
||||||
from PIL import Image
|
from PIL import Image
|
||||||
|
|
||||||
# This is to store chat profile pictures as base64-encoded thumbnails
|
# This is to store the paths to the thumbnails of the profile pictures
|
||||||
image_cache = {}
|
image_cache = {}
|
||||||
|
|
||||||
def generate_basic_html(s):
|
def generate_basic_html(s):
|
||||||
@ -195,15 +193,18 @@ def generate_4chan_html(f):
|
|||||||
|
|
||||||
return output
|
return output
|
||||||
|
|
||||||
def image_to_base64(path):
|
def get_image_cache(path):
|
||||||
mtime = os.stat(path).st_mtime
|
cache_folder = Path("cache")
|
||||||
|
if not cache_folder.exists():
|
||||||
|
cache_folder.mkdir()
|
||||||
|
|
||||||
|
mtime = os.stat(path).st_mtime
|
||||||
if (path in image_cache and mtime != image_cache[path][0]) or (path not in image_cache):
|
if (path in image_cache and mtime != image_cache[path][0]) or (path not in image_cache):
|
||||||
img = Image.open(path)
|
img = Image.open(path)
|
||||||
img.thumbnail((200, 200))
|
img.thumbnail((200, 200))
|
||||||
img_buffer = BytesIO()
|
output_file = Path(f'cache/{path.name}_cache.png')
|
||||||
img.convert('RGB').save(img_buffer, format='PNG')
|
img.convert('RGB').save(output_file, format='PNG')
|
||||||
image_cache[path] = [mtime, base64.b64encode(img_buffer.getvalue()).decode("utf-8")]
|
image_cache[path] = [mtime, output_file.as_posix()]
|
||||||
|
|
||||||
return image_cache[path][1]
|
return image_cache[path][1]
|
||||||
|
|
||||||
@ -301,14 +302,14 @@ def generate_chat_html(history, name1, name2, character):
|
|||||||
|
|
||||||
path = Path(i)
|
path = Path(i)
|
||||||
if path.exists():
|
if path.exists():
|
||||||
img = f'<img src="data:image/png;base64,{image_to_base64(path)}">'
|
img = f'<img src="file/{get_image_cache(path)}">'
|
||||||
break
|
break
|
||||||
|
|
||||||
img_me = ''
|
img_me = ''
|
||||||
for i in ["img_me.png", "img_me.jpg", "img_me.jpeg"]:
|
for i in ["img_me.png", "img_me.jpg", "img_me.jpeg"]:
|
||||||
path = Path(i)
|
path = Path(i)
|
||||||
if path.exists():
|
if path.exists():
|
||||||
img_me = f'<img src="data:image/png;base64,{image_to_base64(path)}">'
|
img_me = f'<img src="file/{get_image_cache(path)}">'
|
||||||
break
|
break
|
||||||
|
|
||||||
for i,_row in enumerate(history[::-1]):
|
for i,_row in enumerate(history[::-1]):
|
||||||
|
@ -267,8 +267,8 @@ if shared.args.chat or shared.args.cai_chat:
|
|||||||
# Clear history with confirmation
|
# Clear history with confirmation
|
||||||
clear_arr = [shared.gradio[k] for k in ['Clear history-confirm', 'Clear history', 'Clear history-cancel']]
|
clear_arr = [shared.gradio[k] for k in ['Clear history-confirm', 'Clear history', 'Clear history-cancel']]
|
||||||
shared.gradio['Clear history'].click(lambda :[gr.update(visible=True), gr.update(visible=False), gr.update(visible=True)], None, clear_arr)
|
shared.gradio['Clear history'].click(lambda :[gr.update(visible=True), gr.update(visible=False), gr.update(visible=True)], None, clear_arr)
|
||||||
shared.gradio['Clear history-confirm'].click(chat.clear_chat_log, [shared.gradio['name1'], shared.gradio['name2']], shared.gradio['display'])
|
|
||||||
shared.gradio['Clear history-confirm'].click(lambda :[gr.update(visible=False), gr.update(visible=True), gr.update(visible=False)], None, clear_arr)
|
shared.gradio['Clear history-confirm'].click(lambda :[gr.update(visible=False), gr.update(visible=True), gr.update(visible=False)], None, clear_arr)
|
||||||
|
shared.gradio['Clear history-confirm'].click(chat.clear_chat_log, [shared.gradio['name1'], shared.gradio['name2']], shared.gradio['display'])
|
||||||
shared.gradio['Clear history-cancel'].click(lambda :[gr.update(visible=False), gr.update(visible=True), gr.update(visible=False)], None, clear_arr)
|
shared.gradio['Clear history-cancel'].click(lambda :[gr.update(visible=False), gr.update(visible=True), gr.update(visible=False)], None, clear_arr)
|
||||||
|
|
||||||
shared.gradio['Remove last'].click(chat.remove_last_message, [shared.gradio['name1'], shared.gradio['name2']], [shared.gradio['display'], shared.gradio['textbox']], show_progress=False)
|
shared.gradio['Remove last'].click(chat.remove_last_message, [shared.gradio['name1'], shared.gradio['name2']], [shared.gradio['display'], shared.gradio['textbox']], show_progress=False)
|
||||||
@ -279,7 +279,7 @@ if shared.args.chat or shared.args.cai_chat:
|
|||||||
for i in ['Generate', 'Regenerate', 'Replace last reply']:
|
for i in ['Generate', 'Regenerate', 'Replace last reply']:
|
||||||
shared.gradio[i].click(lambda x: '', shared.gradio['textbox'], shared.gradio['textbox'], show_progress=False)
|
shared.gradio[i].click(lambda x: '', shared.gradio['textbox'], shared.gradio['textbox'], show_progress=False)
|
||||||
shared.gradio[i].click(lambda : chat.save_history(timestamp=False), [], [], show_progress=False)
|
shared.gradio[i].click(lambda : chat.save_history(timestamp=False), [], [], show_progress=False)
|
||||||
shared.gradio['Clear history'].click(lambda : chat.save_history(timestamp=False), [], [], show_progress=False)
|
shared.gradio['Clear history-confirm'].click(lambda : chat.save_history(timestamp=False), [], [], show_progress=False)
|
||||||
shared.gradio['textbox'].submit(lambda x: '', shared.gradio['textbox'], shared.gradio['textbox'], show_progress=False)
|
shared.gradio['textbox'].submit(lambda x: '', shared.gradio['textbox'], shared.gradio['textbox'], show_progress=False)
|
||||||
shared.gradio['textbox'].submit(lambda : chat.save_history(timestamp=False), [], [], show_progress=False)
|
shared.gradio['textbox'].submit(lambda : chat.save_history(timestamp=False), [], [], show_progress=False)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user