Spaces:
Running
Running
File size: 7,894 Bytes
b24805e 6b8a805 b24805e 6b8a805 76c51c1 74bda91 d8ef9f9 398e0e0 76c51c1 3c6ebcd 029ff92 1e6519e d021296 6c33d2e 2e0a307 d8ef9f9 2e0a307 1c28431 d8ef9f9 398e0e0 d8ef9f9 398e0e0 d8ef9f9 335a2de 1c28431 9baa3f7 9f6aacd 9baa3f7 f4d54af 9baa3f7 f4d54af 9baa3f7 76c51c1 6b8a805 d4b2d90 6dfc88f 061316d 6dfc88f d4b2d90 6dfc88f d4b2d90 061316d 0f3a4fc 6dfc88f 061316d 9f6aacd 6dfc88f d021296 061316d d4b2d90 6b8a805 d021296 f8567da 6dfc88f f8567da 205f5a4 f8567da 205f5a4 d021296 f8567da d021296 f8567da d021296 f8567da d021296 f8567da d021296 f8567da d021296 205f5a4 d021296 205f5a4 d021296 205f5a4 d021296 205f5a4 d021296 205f5a4 f8567da 9baa3f7 d021296 9baa3f7 f8567da 6dfc88f 398e0e0 f8567da 061316d 9baa3f7 f8567da 398e0e0 029ff92 335a2de d021296 441a1a3 029ff92 1c28431 9f6aacd f4d54af 9f6aacd 9baa3f7 f8567da 1e6519e 398e0e0 1e6519e f8567da 0f3a4fc 061316d d021296 061316d c542f6a 9baa3f7 c542f6a 6dfc88f c542f6a 6dfc88f c542f6a b24805e 061316d b24805e 6dfc88f 6b8a805 d021296 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 |
import json
import gradio as gr
from pingpong import PingPong
from pingpong.gradio import GradioAlpacaChatPPManager
STYLE = """
.custom-btn {
border: none !important;
background: none !important;
box-shadow: none !important;
display: block !important;
text-align: left !important;
}
.custom-btn:hover {
background: rgb(243 244 246) !important;
}
.custom-btn-highlight {
border: none !important;
background: rgb(243 244 246) !important;
box-shadow: none !important;
display: block !important;
text-align: left !important;
}
#prompt-txt > label > span {
display: none !important;
}
#prompt-txt > label > textarea {
border: transparent;
box-shadow: none;
}
#chatbot {
height: 800px;
overflow: auto;
box-shadow: none !important;
border: none !important;
}
#chatbot > .wrap {
max-height: 780px;
}
#chatbot + div {
border-radius: 35px;
width: 80% !important;
margin: auto !important;
}
#left-pane {
background-color: #f9fafb;
border-radius: 15px;
padding: 10px;
}
#left-top {
padding-left: 10px;
padding-right: 10px;
text-align: center;
font-weight: bold;
font-size: large;
}
#chat-history-accordion {
background: transparent;
border: 0.8px !important;
}
#right-pane {
margin-left: 20px;
margin-right: 70px;
}
#initial-popup {
z-index: 100;
position: absolute;
width: 50%;
top: 50%;
height: 50%;
left: 50%;
transform: translate(-50%, -50%);
border-radius: 35px;
padding: 15px;
}
#initial-popup-title {
text-align: center;
font-size: 18px;
font-weight: bold;
}
#initial-popup-left-pane {
min-width: 150px !important;
}
#initial-popup-right-pane {
text-align: right;
}
.example-btn {
padding-top: 20px !important;
padding-bottom: 20px !important;
padding-left: 5px !important;
padding-right: 5px !important;
background: linear-gradient(to bottom right, #f7faff, #ffffff) !important;
box-shadow: none !important;
border-radius: 20px !important;
}
.example-btn:hover {
box-shadow: 0.3px 0.3px 0.3px gray !important
}
#example-title {
margin-bottom: 15px;
}
"""
get_local_storage = """
function() {
globalThis.setStorage = (key, value)=>{
localStorage.setItem(key, JSON.stringify(value));
}
globalThis.getStorage = (key, value)=>{
return JSON.parse(localStorage.getItem(key));
}
var local_data = getStorage('local_data');
var history = [];
if(local_data) {
local_data[0].pingpongs.forEach(element =>{
history.push([element.ping, element.pong]);
});
}
else {
local_data = [];
for (let step = 0; step < 10; step++) {
local_data.push({'ctx': '', 'pingpongs':[]});
}
setStorage('local_data', local_data);
}
if(history.length == 0) {
document.querySelector("#initial-popup").classList.remove('hide');
}
return [history, local_data];
}
"""
update_left_btns_state = """
(v)=>{
document.querySelector('.custom-btn-highlight').classList.add('custom-btn');
document.querySelector('.custom-btn-highlight').classList.remove('custom-btn-highlight');
const elements = document.querySelectorAll(".custom-btn");
for(var i=0; i < elements.length; i++) {
const element = elements[i];
if(element.textContent == v) {
console.log(v);
element.classList.add('custom-btn-highlight');
element.classList.remove('custom-btn');
break;
}
}
}"""
def add_pingpong(idx, ld, ping):
res = [
GradioAlpacaChatPPManager.from_json(json.dumps(ppm))
for ppm in ld
]
ppm = res[idx]
ppm.add_pingpong(PingPong(ping, "dang!!!!!!!"))
return "", ppm.build_uis(), str(res)
def channel_num(btn_title):
choice = 0
if btn_title == "1st Channel":
choice = 0
elif btn_title == "2nd Channel":
choice = 1
elif btn_title == "3rd Channel":
choice = 2
elif btn_title == "4th Channel":
choice = 3
elif btn_title == "5th Channel":
choice = 4
elif btn_title == "6th Channel":
choice = 5
elif btn_title == "7th Channel":
choice = 6
elif btn_title == "8th Channel":
choice = 7
elif btn_title == "9th Channel":
choice = 8
elif btn_title == "10th Channel":
choice = 9
return choice
def set_chatbot(btn, ld):
choice = channel_num(btn)
res = [
GradioAlpacaChatPPManager.from_json(json.dumps(ppm_str))
for ppm_str in ld
]
empty = len(res[choice].pingpongs) == 0
return (
res[choice].build_uis(),
choice,
gr.update(visible=empty)
)
def set_example(btn):
return btn, gr.update(visible=False)
def set_popup_visibility(ld, example_block):
print(ld)
return example_block
with gr.Blocks(css=STYLE, elem_id='container-col') as block:
idx = gr.State(0)
local_data = gr.JSON({},visible=False)
with gr.Row():
with gr.Column(scale=1, min_width=180):
gr.Markdown("GradioChat", elem_id="left-top")
with gr.Column(elem_id="left-pane"):
with gr.Accordion("Histories", elem_id="chat-history-accordion"):
first = gr.Button("1st Channel", elem_classes=["custom-btn-highlight"])
second = gr.Button("2nd Channel", elem_classes=["custom-btn"])
third = gr.Button("3rd Channel", elem_classes=["custom-btn"])
fourth = gr.Button("4th Channel", elem_classes=["custom-btn"])
fifth = gr.Button("5th Channel", elem_classes=["custom-btn"])
sixth = gr.Button("6th Channel", elem_classes=["custom-btn"])
seventh = gr.Button("7th Channel", elem_classes=["custom-btn"])
eighth = gr.Button("8th Channel", elem_classes=["custom-btn"])
nineth = gr.Button("9th Channel", elem_classes=["custom-btn"])
tenth = gr.Button("10th Channel", elem_classes=["custom-btn"])
with gr.Column(scale=8, elem_id="right-pane"):
with gr.Column(elem_id="initial-popup", visible=False) as example_block:
with gr.Row(scale=1):
with gr.Column(elem_id="initial-popup-left-pane"):
gr.Markdown("GradioChat", elem_id="initial-popup-title")
gr.Markdown("Making the community's best AI chat models available to everyone.")
with gr.Column(elem_id="initial-popup-right-pane"):
gr.Markdown("Chat UI is now open sourced on Hugging Face Hub")
gr.Markdown("check out the [↗ repository](https://huggingface.co/spaces/chansung/test-multi-conv)")
with gr.Column(scale=1):
gr.Markdown("Examples")
with gr.Row():
ex_btn1 = gr.Button("hello world", elem_classes=["example-btn"])
ex_btn2 = gr.Button("what's up?", elem_classes=["example-btn"])
ex_btn3 = gr.Button("this is GradioChat", elem_classes=["example-btn"])
chatbot = gr.Chatbot(elem_id='chatbot')
instruction_txtbox = gr.Textbox(
placeholder="Ask anything", label="",
elem_id="prompt-txt"
)
btns = [
first, second, third, fourth, fifth,
sixth, seventh, eighth, nineth, tenth
]
for btn in btns:
btn.click(
set_chatbot,
[btn, local_data],
[chatbot, idx, example_block]
).then(
None, btn, None,
_js=update_left_btns_state
)
ex_btns = [ex_btn1, ex_btn2, ex_btn3]
for btn in ex_btns:
btn.click(
set_example,
[btn],
[instruction_txtbox, example_block]
)
instruction_txtbox.submit(
lambda: gr.update(visible=False),
None,
example_block
).then(
add_pingpong,
[idx, local_data, instruction_txtbox],
[instruction_txtbox, chatbot, local_data]
).then(
None, local_data, None,
_js="(v)=>{ setStorage('local_data',v) }"
)
block.load(
None,
inputs=None,
outputs=[chatbot, local_data],
_js=get_local_storage,
)
block.queue().launch(debug=True) |