Spaces:
Running
Running
nguyenbh
commited on
Commit
·
56b7e8f
1
Parent(s):
77a7e58
update description
Browse files
app.py
CHANGED
@@ -472,7 +472,7 @@ def bot_response(history, conversation_state):
|
|
472 |
|
473 |
# Add bot response to history
|
474 |
if result=="None":
|
475 |
-
result = "
|
476 |
history.append({"role": "assistant", "content": result})
|
477 |
|
478 |
# Add to conversation state
|
@@ -535,6 +535,8 @@ with gr.Blocks(theme=gr.themes.Soft(), css=css) as demo:
|
|
535 |
description = gr.Markdown("""
|
536 |
This demo allows you to interact with the [Phi-4-Multimodal AI model](https://aka.ms/phi-4-multimodal/techreport).
|
537 |
You can type messages, upload images, or record audio to communicate with the AI.
|
|
|
|
|
538 |
""")
|
539 |
|
540 |
# Store the conversation state with base64 data
|
|
|
472 |
|
473 |
# Add bot response to history
|
474 |
if result=="None":
|
475 |
+
result = "This demo does not support text + audio + image inputs in the same conversation. Please click Clear conversation button."
|
476 |
history.append({"role": "assistant", "content": result})
|
477 |
|
478 |
# Add to conversation state
|
|
|
535 |
description = gr.Markdown("""
|
536 |
This demo allows you to interact with the [Phi-4-Multimodal AI model](https://aka.ms/phi-4-multimodal/techreport).
|
537 |
You can type messages, upload images, or record audio to communicate with the AI.
|
538 |
+
Other demos include [Thoughts Organizer](https://microsoft-thoughtsorganizer.hf.space/),
|
539 |
+
[Stories Come Alive](https://microsoft-storiescomealive.hf.space/), [Phine Speech Translator](https://microsoft-phinespeechtranslator.hf.space/), and [Phi-4-Mini Playground](https://microsoft-phi-4-mini.hf.space/)
|
540 |
""")
|
541 |
|
542 |
# Store the conversation state with base64 data
|