File size: 31,974 Bytes
20d43cc d9a0196 20d43cc d9a0196 51ab142 f2b2cdc d9a0196 7a6824f d9a0196 7a6824f d9a0196 f71ed88 d9a0196 bad5227 a7b5bcb bad5227 5b847dd a7b5bcb 7a6824f d9a0196 a7b5bcb 7a6824f d9a0196 7a6824f d9a0196 7a6824f d9a0196 7a6824f a7b5bcb 7a6824f d9a0196 7a6824f d9a0196 7a6824f d9a0196 a7b5bcb d9a0196 4112e9f 7a6824f d9a0196 7a6824f d9a0196 7a6824f d9a0196 7a6824f a7b5bcb d9a0196 0efe14d 38ce88e |
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 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 |
import os
import uuid
import gradio as gr
import modelscope_studio.components.antd as antd
import modelscope_studio.components.antdx as antdx
import modelscope_studio.components.base as ms
from openai import OpenAI
from dotenv import load_dotenv, dotenv_values
load_dotenv()
# initialize the client
client = OpenAI(
base_url="https://api-inference.huggingface.co/v1",
api_key=os.environ.get('API_KEY') # Replace with your token
)
# Create supported models
model_links = {
"GPT-4o": "meta-llama/Meta-Llama-3-8B-Instruct",
"GPT-4": "meta-llama/Meta-Llama-3.1-70B-Instruct",
}
def reset_conversation():
'''
Resets Conversation
'''
st.session_state.conversation = []
st.session_state.messages = []
return None
# Define the available models
models =[key for key in model_links.keys()]
# Create the sidebar with the dropdown for model selection
selected_model = st.sidebar.selectbox("Select a GPT model", models)
#Add reset button to clear conversation
st.sidebar.button('New Chat', on_click=reset_conversation) #Reset button
# Create a temperature slider
temp_values = st.sidebar.slider('ChatGPT Temperature', 0.0, 1.0, (0.5))
st.sidebar.markdown("Temperature in ChatGPT affects the quality and coherence of the generated text.")
st.sidebar.markdown("**For optimum results, we recommend selecting a temperature between 0.5 and 0.7**")
# Create model description
st.sidebar.markdown("*The content created may not be accurate.*")
st.sidebar.markdown("\n Our website: [Chat-GPT-Free.com](https://chat-gpt-free.com/).")
if "prev_option" not in st.session_state:
st.session_state.prev_option = selected_model
if st.session_state.prev_option != selected_model:
st.session_state.messages = []
# st.write(f"Changed to {selected_model}")
st.session_state.prev_option = selected_model
reset_conversation()
#Pull in the model we want to use
repo_id = model_links[selected_model]
st.subheader(f'[Chat-GPT-Free.com](https://chat-gpt-free.com/) with AI model {selected_model}')
# st.title(f'Chat-GPT-Free is now using {selected_model}')
# Set a default model
if selected_model not in st.session_state:
st.session_state[selected_model] = model_links[selected_model]
# Initialize chat history
if "messages" not in st.session_state:
st.session_state.messages = []
# Display chat messages from history on app rerun
for message in st.session_state.messages:
with st.chat_message(message["role"]):
st.markdown(message["content"])
# Accept user input
if prompt := st.chat_input(f"Hi. I'm {selected_model}. How can I help you today?"):
# Display user message in chat message container
with st.chat_message("user"):
st.markdown(prompt)
# Add user message to chat history
st.session_state.messages.append({"role": "user", "content": prompt})
# Display assistant response in chat message container
with st.chat_message("assistant"):
try:
stream = client.chat.completions.create(
model=model_links[selected_model],
messages=[
{"role": m["role"], "content": m["content"]}
for m in st.session_state.messages
],
temperature=temp_values,#0.5,
stream=True,
max_tokens=3000,
)
response = st.write_stream(stream)
except Exception as e:
# st.empty()
response = "The GPT is overloaded!\
\n Repeat your request later :( "
st.write(response)
st.session_state.messages.append({"role": "assistant", "content": response})
css = """
.gradio-container {
padding: 0 !important;
}
.gradio-container > main.fillable {
padding: 0 !important;
}
#chatbot {
height: calc(100vh - 21px - 16px);
}
#chatbot .chatbot-conversations {
height: 100%;
background-color: var(--ms-gr-ant-color-bg-layout);
}
#chatbot .chatbot-conversations .chatbot-conversations-list {
padding-left: 0;
padding-right: 0;
}
#chatbot .chatbot-chat {
padding: 32px;
height: 100%;
}
@media (max-width: 768px) {
#chatbot .chatbot-chat {
padding: 0;
}
}
#chatbot .chatbot-chat .chatbot-chat-messages {
flex: 1;
}
#chatbot .chatbot-chat .chatbot-chat-messages .chatbot-chat-message .chatbot-chat-message-footer {
visibility: hidden;
opacity: 0;
transition: opacity 0.2s;
}
#chatbot .chatbot-chat .chatbot-chat-messages .chatbot-chat-message:last-child .chatbot-chat-message-footer {
visibility: visible;
opacity: 1;
}
#chatbot .chatbot-chat .chatbot-chat-messages .chatbot-chat-message:hover .chatbot-chat-message-footer {
visibility: visible;
opacity: 1;
}
"""
def logo():
with antd.Typography.Title(level=1,
elem_style=dict(fontSize=24,
padding=8,
margin=0)):
with antd.Flex(align="center", gap="small", justify="center"):
antd.Image(qwen_logo,
preview=False,
alt="logo",
width=24,
height=24)
ms.Span("QwQ-32B")
with gr.Blocks(css=css, fill_width=True) as demo:
state = gr.State({
"conversations_history": {},
"conversations": [],
"conversation_id": "",
"editing_message_index": -1,
})
with ms.Application(), antdx.XProvider(
theme=DEFAULT_THEME, locale=DEFAULT_LOCALE), ms.AutoLoading():
with antd.Row(gutter=[20, 20], wrap=False, elem_id="chatbot"):
# Left Column
with antd.Col(md=dict(flex="0 0 260px", span=24, order=0),
span=0,
order=1,
elem_classes="chatbot-conversations"):
with antd.Flex(vertical=True,
gap="small",
elem_style=dict(height="100%")):
# Logo
logo()
# New Conversation Button
with antd.Button(value=None,
color="primary",
variant="filled",
block=True) as add_conversation_btn:
ms.Text(get_text("New Conversation", "新建对话"))
with ms.Slot("icon"):
antd.Icon("PlusOutlined")
# Conversations List
with antdx.Conversations(
elem_classes="chatbot-conversations-list",
) as conversations:
with ms.Slot('menu.items'):
with antd.Menu.Item(
label="Delete", key="delete", danger=True
) as conversation_delete_menu_item:
with ms.Slot("icon"):
antd.Icon("DeleteOutlined")
# Right Column
with antd.Col(flex=1, elem_style=dict(height="100%")):
with antd.Flex(vertical=True,
gap="middle",
elem_classes="chatbot-chat"):
# Chatbot
with antdx.Bubble.List(
items=DEFAULT_CONVERSATIONS_HISTORY,
elem_classes="chatbot-chat-messages") as chatbot:
# Define Chatbot Roles
with ms.Slot("roles"):
# Placeholder Role
with antdx.Bubble.List.Role(
role="placeholder",
styles=dict(content=dict(width="100%")),
variant="borderless"):
with ms.Slot("messageRender"):
with antd.Space(
direction="vertical",
size=16,
elem_style=dict(width="100%")):
with antdx.Welcome(
styles=dict(icon=dict(
flexShrink=0)),
variant="borderless",
title=get_text(
"Hello, I'm QwQ-32B",
"你好,我是 QwQ-32B"),
description=get_text(
"You can type text to get started.",
"你可以输入文本开始对话。"),
):
with ms.Slot("icon"):
antd.Image(qwen_logo,
preview=False)
with antdx.Prompts(title=get_text(
"How can I help you today?",
"有什么我能帮助你的吗?"),
styles={
"list": {
"width":
'100%',
},
"item": {
"flex": 1,
},
}) as prompts:
for item in DEFAULT_PROMPTS:
with antdx.Prompts.Item(
label=item["category"]
):
for prompt in item[
"prompts"]:
antdx.Prompts.Item(
description=prompt,
)
# User Role
with antdx.Bubble.List.Role(
role="user",
placement="end",
elem_classes="chatbot-chat-message",
class_names=dict(
footer="chatbot-chat-message-footer"),
styles=dict(content=dict(
maxWidth="100%",
overflow='auto',
))):
with ms.Slot(
"messageRender",
params_mapping="(content) => content"):
ms.Markdown()
with ms.Slot("footer",
params_mapping="""(bubble) => {
return {
copy_btn: {
copyable: { text: typeof bubble.content === 'string' ? bubble.content : bubble.content?.text, tooltips: false },
},
edit_btn: { conversationKey: bubble.key, disabled: bubble.meta.disabled },
delete_btn: { conversationKey: bubble.key, disabled: bubble.meta.disabled },
};
}"""):
with antd.Typography.Text(
copyable=dict(tooltips=False),
as_item="copy_btn"):
with ms.Slot("copyable.icon"):
with antd.Button(value=None,
size="small",
color="default",
variant="text"):
with ms.Slot("icon"):
antd.Icon("CopyOutlined")
with antd.Button(value=None,
size="small",
color="default",
variant="text"):
with ms.Slot("icon"):
antd.Icon("CheckOutlined")
with antd.Button(value=None,
size="small",
color="default",
variant="text",
as_item="edit_btn"
) as user_edit_btn:
with ms.Slot("icon"):
antd.Icon("EditOutlined")
with antd.Popconfirm(
title="Delete the message",
description=
"Are you sure to delete this message?",
ok_button_props=dict(danger=True),
as_item="delete_btn"
) as user_delete_popconfirm:
with antd.Button(value=None,
size="small",
color="default",
variant="text",
as_item="delete_btn"):
with ms.Slot("icon"):
antd.Icon("DeleteOutlined")
# Chatbot Role
with antdx.Bubble.List.Role(
role="assistant",
placement="start",
elem_classes="chatbot-chat-message",
class_names=dict(
footer="chatbot-chat-message-footer"),
styles=dict(content=dict(
maxWidth="100%", overflow='auto'))):
with ms.Slot("avatar"):
antd.Avatar(
os.path.join(os.path.dirname(__file__),
"qwen.png"))
with ms.Slot(
"messageRender",
params_mapping="""(content, bubble) => {
const reason_content = bubble?.meta?.reason_content
const has_error = bubble?.meta?.error
return {
reasoning: reason_content || content,
reasoning_container: has_error ? { style: { display: 'none' } } : undefined,
answer: {
value: reason_content || has_error ? content : undefined
},
collapse_label: bubble.meta?.thought_end_message,
collapse_progress: bubble.meta?.thought_end_message ? { style: { display: 'none' } } : undefined,
canceled: bubble.meta?.canceled ? undefined : { style: { display: 'none' } }
}
}"""):
with antd.Flex(vertical=True,
gap="middle"):
with antd.Collapse(
default_active_key=[
"reasoning"
],
as_item="reasoning_container"):
with antd.Collapse.Item(
key="reasoning"):
with ms.Slot("label"):
with antd.Space(
size="middle"):
ms.Span(
get_text(
"Thinking...",
"思考中..."),
as_item=
"collapse_label")
antd.Progress(
percent="100",
status="active",
elem_style=dict(
display="flex",
alignItems=
"center",
),
show_info=False,
size=[110, 5],
as_item=
"collapse_progress"
)
with antd.Alert(
type="warning"):
with ms.Slot(
"description"):
ms.Markdown(
as_item="reasoning"
)
ms.Markdown(
as_item="answer",
elem_classes="answer-content")
antd.Divider(as_item="canceled")
antd.Typography.Text(get_text(
"Chat completion paused.", "聊天已暂停。"),
as_item="canceled",
type="warning")
with ms.Slot("footer",
params_mapping="""(bubble) => {
if (bubble?.meta?.end) {
return {
copy_btn: {
copyable: { text: bubble.content, tooltips: false },
},
regenerate_btn: { conversationKey: bubble.key, disabled: bubble.meta.disabled },
delete_btn: { conversationKey: bubble.key, disabled: bubble.meta.disabled },
edit_btn: { conversationKey: bubble.key, disabled: bubble.meta.disabled },
};
}
return { actions_container: { style: { display: 'none' } } };
}"""):
with ms.Div(as_item="actions_container"):
with antd.Typography.Text(
copyable=dict(tooltips=False),
as_item="copy_btn"):
with ms.Slot("copyable.icon"):
with antd.Button(
value=None,
size="small",
color="default",
variant="text"):
with ms.Slot("icon"):
antd.Icon(
"CopyOutlined")
with antd.Button(
value=None,
size="small",
color="default",
variant="text"):
with ms.Slot("icon"):
antd.Icon(
"CheckOutlined")
with antd.Popconfirm(
title=get_text(
"Regenerate the message",
"重新生成消息"),
description=get_text(
"Regenerate the message will also delete all subsequent messages.",
"重新生成消息将会删除所有的后续消息。"),
ok_button_props=dict(
danger=True),
as_item="regenerate_btn"
) as chatbot_regenerate_popconfirm:
with antd.Button(
value=None,
size="small",
color="default",
variant="text",
as_item="regenerate_btn",
):
with ms.Slot("icon"):
antd.Icon("SyncOutlined")
with antd.Button(value=None,
size="small",
color="default",
variant="text",
as_item="edit_btn"
) as chatbot_edit_btn:
with ms.Slot("icon"):
antd.Icon("EditOutlined")
with antd.Popconfirm(
title=get_text("Delete the message", "删除消息"),
description=get_text(
"Are you sure to delete this message?",
"确定要删除这条消息吗?"),
ok_button_props=dict(
danger=True),
as_item="delete_btn"
) as chatbot_delete_popconfirm:
with antd.Button(
value=None,
size="small",
color="default",
variant="text",
as_item="delete_btn"):
with ms.Slot("icon"):
antd.Icon("DeleteOutlined")
# Sender
with antdx.Suggestion(
items=DEFAULT_SUGGESTIONS,
# onKeyDown Handler in Javascript
should_trigger="""(e, { onTrigger, onKeyDown }) => {
switch(e.key) {
case '/':
onTrigger()
break
case 'ArrowRight':
case 'ArrowLeft':
case 'ArrowUp':
case 'ArrowDown':
break;
default:
onTrigger(false)
}
onKeyDown(e)
}""") as suggestion:
with ms.Slot("children"):
with antdx.Sender(placeholder=get_text(
"Enter / to get suggestions",
"输入 / 获取建议"), ) as sender:
with ms.Slot("prefix"):
# Clear Button
with antd.Tooltip(title=get_text(
"Clear Conversation History",
"清空对话历史"), ):
with antd.Button(
value=None,
type="text") as clear_btn:
with ms.Slot("icon"):
antd.Icon("ClearOutlined")
# Modals
with antd.Modal(title=get_text("Edit Message", "编辑消息"),
open=False,
centered=True,
width="60%") as edit_modal:
edit_textarea = antd.Input.Textarea(auto_size=dict(minRows=2,
maxRows=6),
elem_style=dict(width="100%"))
# Events Handler
if save_history:
browser_state = gr.BrowserState(
{
"conversations_history": {},
"conversations": [],
},
storage_key="qwen_qwq_chatbot_storage")
state.change(fn=Gradio_Events.update_browser_state,
inputs=[state],
outputs=[browser_state])
demo.load(fn=Gradio_Events.apply_browser_state,
inputs=[browser_state, state],
outputs=[conversations, state])
add_conversation_btn.click(fn=Gradio_Events.new_chat,
inputs=[state],
outputs=[conversations, chatbot, state])
conversations.active_change(fn=Gradio_Events.select_conversation,
inputs=[state],
outputs=[conversations, chatbot, state])
conversations.menu_click(fn=Gradio_Events.click_conversation_menu,
inputs=[state],
outputs=[conversations, chatbot, state])
prompts.item_click(fn=Gradio_Events.apply_prompt, outputs=[sender])
clear_btn.click(fn=Gradio_Events.clear_conversation_history,
inputs=[state],
outputs=[chatbot, state])
suggestion.select(fn=Gradio_Events.select_suggestion,
inputs=[sender],
outputs=[sender])
gr.on(triggers=[user_edit_btn.click, chatbot_edit_btn.click],
fn=Gradio_Events.edit_message,
inputs=[state],
outputs=[edit_textarea, state]).then(fn=Gradio_Events.open_modal,
outputs=[edit_modal])
edit_modal.ok(fn=Gradio_Events.confirm_edit_message,
inputs=[edit_textarea, state],
outputs=[chatbot, state]).then(fn=Gradio_Events.close_modal,
outputs=[edit_modal])
edit_modal.cancel(fn=Gradio_Events.close_modal, outputs=[edit_modal])
gr.on(triggers=[
chatbot_delete_popconfirm.confirm, user_delete_popconfirm.confirm
],
fn=Gradio_Events.delete_message,
inputs=[state],
outputs=[chatbot, state])
regenerating_event = chatbot_regenerate_popconfirm.confirm(
fn=Gradio_Events.regenerate_message,
inputs=[state],
outputs=[sender, clear_btn, conversation_delete_menu_item, add_conversation_btn, conversations, chatbot, state])
submit_event = sender.submit(fn=Gradio_Events.submit,
inputs=[sender, state],
outputs=[sender, clear_btn, conversation_delete_menu_item,
add_conversation_btn, conversations,chatbot, state])
sender.cancel(fn=None, cancels=[submit_event, regenerating_event])
sender.cancel(fn=Gradio_Events.cancel,
inputs=[state],
outputs=[
sender, conversation_delete_menu_item, clear_btn,
conversations, add_conversation_btn, chatbot, state
])
if __name__ == "__main__":
demo.queue(default_concurrency_limit=200).launch(ssr_mode=False, max_threads=200)
|