Update app.py
Browse files
app.py
CHANGED
@@ -28,8 +28,8 @@ SYSTEM_PROMPT = {
|
|
28 |
|
29 |
# Voice options
|
30 |
VOICE_OPTIONS = {
|
31 |
-
"
|
32 |
-
"
|
33 |
}
|
34 |
|
35 |
@spaces.GPU
|
@@ -151,8 +151,8 @@ def user_input_to_content(user_input):
|
|
151 |
return user_input
|
152 |
|
153 |
def create_demo():
|
154 |
-
with gr.Blocks(title="Qwen2.5-Omni
|
155 |
-
gr.Markdown("# Qwen2.5-Omni Multimodal
|
156 |
gr.Markdown("Experience the omni-modal capabilities of Qwen2.5-Omni through text, images, audio, and video interactions.")
|
157 |
|
158 |
# Hidden placeholder components for text-only input
|
|
|
28 |
|
29 |
# Voice options
|
30 |
VOICE_OPTIONS = {
|
31 |
+
"Marie (Female)": "Marie",
|
32 |
+
"Peter (Male)": "Peter"
|
33 |
}
|
34 |
|
35 |
@spaces.GPU
|
|
|
151 |
return user_input
|
152 |
|
153 |
def create_demo():
|
154 |
+
with gr.Blocks(title="Qwen2.5-Omni ChatBot", theme=gr.themes.Soft()) as demo:
|
155 |
+
gr.Markdown("# Qwen2.5-Omni Multimodal ChatBot")
|
156 |
gr.Markdown("Experience the omni-modal capabilities of Qwen2.5-Omni through text, images, audio, and video interactions.")
|
157 |
|
158 |
# Hidden placeholder components for text-only input
|