\n'+chat_pair[0],chat_pair[1]]))
else:
conv_history.append(tuple(chat_pair))
print("conv_history",conv_history)
question = message["text"]
response, conv_history = model.chat(tokenizer, pixel_values, question, generation_config, history=conv_history, return_history=True)
print(f'User: {question}\nAssistant: {response}')
think_part = wrap_text(extract_think(response))
conclusion_part = extract_conclusion(response)
if conclusion_part == "":
conclusion_part = think_part
buffer = ""
thinking = think_part
accumulated_text = "💡 **Thinking process:**\n\n"
accumulated_text += "\n"
temp_text = ""
for char in thinking:
temp_text += char
yield accumulated_text + temp_text + "\n
\n"
time.sleep(0.01)
accumulated_text += temp_text + "\n\n"
# Yield phần kết luận
accumulated_text += "🎯 **Conclusion:**\n\n"
temp_text = ""
for char in conclusion_part:
temp_text += char
yield accumulated_text + temp_text
time.sleep(0.02)
accumulated_text += temp_text
CSS ="""
#component-10 {
height: 70dvh !important;
transform-origin: top; /* Đảm bảo rằng phần tử mở rộng từ trên xuống */
border-style: solid;
overflow: hidden;
flex-grow: 1;
min-width: min(160px, 100%);
border-width: var(--block-border-width);
}
#component-12 {
height: 50dvh !important;
border-style: solid;
overflow: auto;
flex-grow: 1;
min-width: min(160px, 100%);
border-width: var(--block-border-width);
}
#component-15 {
border-style: solid;
overflow: hidden;
flex-grow: 7;
min-width: min(160px, 100%);
border-width: var(--block-border-width);
height: 20dvh !important;
}
#think-button{
width: 40% !important;
}
/* Đảm bảo ảnh bên trong nút hiển thị đúng cách cho các nút có aria-label chỉ định */
button.svelte-1lcyrx4[aria-label="user's message: a file of type image/jpeg, "] img.svelte-1pijsyv {
width: 100%;
object-fit: contain;
height: 100%;
border-radius: 13px; /* Thêm bo góc cho ảnh */
max-width: 50vw; /* Giới hạn chiều rộng ảnh */
}
/* Đặt chiều cao cho nút và cho phép chọn văn bản chỉ cho các nút có aria-label chỉ định */
button.svelte-1lcyrx4[aria-label="user's message: a file of type image/jpeg, "] {
user-select: text;
text-align: left;
height: 300px;
}
/* Thêm bo góc và giới hạn chiều rộng cho ảnh không thuộc avatar container */
.message-wrap.svelte-1lcyrx4 > div.svelte-1lcyrx4 .svelte-1lcyrx4:not(.avatar-container) img {
border-radius: 13px;
max-width: 50vw;
}
.message-wrap.svelte-1lcyrx4 .message.svelte-1lcyrx4 img {
margin: var(--size-2);
max-height: 500px;
}
.image-preview-close-button {
position: relative; /* Nếu cần định vị trí */
width: 5%; /* Chiều rộng nút */
height: 5%; /* Chiều cao nút */
display: flex;
justify-content: center;
align-items: center;
padding: 0; /* Để tránh ảnh hưởng từ padding mặc định */
border: none; /* Tùy chọn để loại bỏ đường viền */
background: none; /* Tùy chọn để loại bỏ nền */
}
.example-image-container.svelte-9pi8y1 {
width: calc(var(--size-8) * 5);
height: calc(var(--size-8) * 5);
border-radius: var(--radius-lg);
overflow: hidden;
position: relative;
margin-bottom: var(--spacing-lg);
}
"""
js = """
function forceLightTheme() {
const url = new URL(window.location);
// Cập nhật __theme thành light nếu giá trị không đúng
if (url.searchParams.get('__theme') !== 'light') {
url.searchParams.set('__theme', 'light');
// Thay đổi URL mà không tải lại trang nếu cần
window.history.replaceState({}, '', url.href);
}
// Đảm bảo document luôn áp dụng theme light
document.documentElement.setAttribute('data-theme', 'light');
}
"""
def toggle_think_mode(current_state):
global global_think_mode
new_state = not current_state
global_think_mode = not global_think_mode
print("global_think_mode: ",global_think_mode,"="*20)
button_label = "🧠DeepThink💡1minute⏳" if global_think_mode else "🧠Think"
return new_state, button_label
def reset_think_mode():
return False, "🧠Think" # Trả về trạng thái mặc định
demo = gr.Blocks(css=CSS,js=js, theme='NoCrypt/miku')
# demo = gr.Blocks( theme='NoCrypt/miku')
with demo:
think_mode = gr.State(False) # Lưu trạng thái Think Mode
chat_demo_interface = gr.ChatInterface(
fn=chat,
description="""**Vintern-3B-R-beta** This Gradio demo is not complete yet; I am still working on it. :) """,
examples=[
[{"text": "Trích xuất các thông tin từ ảnh trả về markdown.", "files":["./demo_1.jpg"]}, False,False],
[{"text": "Liệt kê toàn bộ văn bản.", "files":["./demo_2.jpg"]}, False,False],
[{"text": "Trích xuất thông tin kiện hàng trong ảnh và trả về dạng JSON.", "files":["./demo_4.jpg"]}, False,False]
],
# additional_inputs=[think_mode],
title="❄️Vintern-3B-R-beta❄️",
multimodal=True,
css=CSS,
js=js,
theme='NoCrypt/miku'
)
think_button = gr.Button("🧠Think", elem_id="think-button", variant="secondary")
# Khi nhấn nút, trạng thái think_mode thay đổi + đổi nhãn nút
think_button.click(toggle_think_mode, inputs=[think_mode], outputs=[think_mode, think_button])
# Reset nút Think sau khi chat hoàn tất
# chat_demo_interface.submit(reset_think_mode, inputs=[], outputs=[think_mode, think_button])
demo.queue().launch()