Bump gradio version

It looks uglier, but the old one was bugged and unstable.
This commit is contained in:
oobabooga 2023-02-15 20:20:56 -03:00
parent 0e89ff4b13
commit a55e8836f6
3 changed files with 13 additions and 6 deletions

View File

@ -215,14 +215,20 @@ def generate_chat_html(history, name1, name2, character):
font-weight: bold; font-weight: bold;
} }
.body { .message-body {
} }
.body img { .message-body img {
max-width: 300px; max-width: 300px;
max-height: 300px; max-height: 300px;
border-radius: 20px; border-radius: 20px;
} }
.message-body p {
margin-bottom: 0 !important;
font-size: 15px !important;
line-height: 1.428571429 !important;
}
""" """
output = '' output = ''
@ -263,7 +269,7 @@ def generate_chat_html(history, name1, name2, character):
<div class="username"> <div class="username">
{name2} {name2}
</div> </div>
<div class="body"> <div class="message-body">
{p} {p}
</div> </div>
</div> </div>
@ -281,7 +287,7 @@ def generate_chat_html(history, name1, name2, character):
<div class="username"> <div class="username">
{name1} {name1}
</div> </div>
<div class="body"> <div class="message-body">
{p} {p}
</div> </div>
</div> </div>

View File

@ -1,7 +1,7 @@
accelerate==0.15.0 accelerate==0.15.0
beautifulsoup4 beautifulsoup4
bitsandbytes==0.37.0 bitsandbytes==0.37.0
gradio==3.15.0 gradio==3.18.0
numpy numpy
safetensors==0.2.8 safetensors==0.2.8
git+https://github.com/huggingface/transformers git+https://github.com/huggingface/transformers

View File

@ -859,7 +859,8 @@ else:
default_text = settings['prompt'] default_text = settings['prompt']
description = f"\n\n# Text generation lab\nGenerate text using Large Language Models.\n" description = f"\n\n# Text generation lab\nGenerate text using Large Language Models.\n"
css = ".my-4 {margin-top: 0} .py-6 {padding-top: 2.5rem} #refresh-button {flex: none; margin: 0; padding: 0; min-width: 50px; border: none; box-shadow: none; border-radius: 0} #download-label, #upload-label {min-height: 0}" css = ".my-4 {margin-top: 0} .py-6 {padding-top: 2.5rem} #refresh-button {flex: none; margin: 0; padding: 0; min-width: 50px; border: none; box-shadow: none; border-radius: 0} #download-label, #upload-label {min-height: 0}"
chat_css = ".h-\[40vh\] {height: 66.67vh} .gradio-container {max-width: 800px; margin-left: auto; margin-right: auto} .w-screen {width: unset}" chat_css = ".h-\[40vh\] {height: 66.67vh} .gradio-container {max-width: 800px; margin-left: auto; margin-right: auto} .w-screen {width: unset} div.svelte-362y77>*, div.svelte-362y77>.form>* {flex-wrap: nowrap}"
suffix = '_pygmalion' if 'pygmalion' in model_name.lower() else '' suffix = '_pygmalion' if 'pygmalion' in model_name.lower() else ''
buttons = {} buttons = {}
gen_events = [] gen_events = []