Spaces:
Running
Running
Upload folder using huggingface_hub
Browse files
README.md
CHANGED
|
@@ -5,7 +5,7 @@ emoji: 🔥
|
|
| 5 |
colorFrom: indigo
|
| 6 |
colorTo: indigo
|
| 7 |
sdk: gradio
|
| 8 |
-
sdk_version:
|
| 9 |
app_file: run.py
|
| 10 |
pinned: false
|
| 11 |
hf_oauth: true
|
|
|
|
| 5 |
colorFrom: indigo
|
| 6 |
colorTo: indigo
|
| 7 |
sdk: gradio
|
| 8 |
+
sdk_version: 6.0.0
|
| 9 |
app_file: run.py
|
| 10 |
pinned: false
|
| 11 |
hf_oauth: true
|
run.ipynb
CHANGED
|
@@ -1 +1 @@
|
|
| 1 |
-
{"cells": [{"cell_type": "markdown", "id": "302934307671667531413257853548643485645", "metadata": {}, "source": ["# Gradio Demo: chatbot_multimodal"]}, {"cell_type": "code", "execution_count": null, "id": "272996653310673477252411125948039410165", "metadata": {}, "outputs": [], "source": ["!pip install -q gradio "]}, {"cell_type": "code", "execution_count": null, "id": "288918539441861185822528903084949547379", "metadata": {}, "outputs": [], "source": ["
|
|
|
|
| 1 |
+
{"cells": [{"cell_type": "markdown", "id": "302934307671667531413257853548643485645", "metadata": {}, "source": ["# Gradio Demo: chatbot_multimodal"]}, {"cell_type": "code", "execution_count": null, "id": "272996653310673477252411125948039410165", "metadata": {}, "outputs": [], "source": ["!pip install -q gradio "]}, {"cell_type": "code", "execution_count": null, "id": "288918539441861185822528903084949547379", "metadata": {}, "outputs": [], "source": ["import gradio as gr\n", "import time\n", "\n", "# Chatbot demo with multimodal input (text, markdown, LaTeX, code blocks, image, audio, & video). Plus shows support for streaming text.\n", "\n", "\n", "def print_like_dislike(x: gr.LikeData):\n", " print(x.index, x.value, x.liked)\n", "\n", "\n", "def add_message(history, message):\n", " user_msg = {\"role\": \"user\", \"content\": []}\n", " for x in message[\"files\"]:\n", " user_msg[\"content\"].append({\"path\": x})\n", " if message[\"text\"] is not None:\n", " user_msg[\"content\"].append(message[\"text\"])\n", " history.append(user_msg)\n", " return history, gr.MultimodalTextbox(value=None, interactive=False)\n", "\n", "\n", "def bot(history: list):\n", " response = \"**That's cool!**\"\n", " history.append({\"role\": \"assistant\", \"content\": \"\"})\n", " for character in response:\n", " history[-1][\"content\"] += character\n", " time.sleep(0.05)\n", " yield history\n", "\n", "\n", "with gr.Blocks() as demo:\n", " chatbot = gr.Chatbot(elem_id=\"chatbot\", like_user_message=True)\n", "\n", " chat_input = gr.MultimodalTextbox(\n", " interactive=True,\n", " file_count=\"multiple\",\n", " placeholder=\"Enter message or upload file...\",\n", " show_label=False,\n", " sources=[\"microphone\", \"upload\"],\n", " )\n", "\n", " chat_msg = chat_input.submit(\n", " add_message, [chatbot, chat_input], [chatbot, chat_input]\n", " )\n", " bot_msg = chat_msg.then(bot, chatbot, chatbot, api_name=\"bot_response\")\n", " bot_msg.then(lambda: gr.MultimodalTextbox(interactive=True), None, [chat_input])\n", "\n", " chatbot.like(print_like_dislike, None, None)\n", "\n", "if __name__ == \"__main__\":\n", " demo.launch()\n"]}], "metadata": {}, "nbformat": 4, "nbformat_minor": 5}
|
run.py
CHANGED
|
@@ -9,10 +9,12 @@ def print_like_dislike(x: gr.LikeData):
|
|
| 9 |
|
| 10 |
|
| 11 |
def add_message(history, message):
|
|
|
|
| 12 |
for x in message["files"]:
|
| 13 |
-
|
| 14 |
if message["text"] is not None:
|
| 15 |
-
|
|
|
|
| 16 |
return history, gr.MultimodalTextbox(value=None, interactive=False)
|
| 17 |
|
| 18 |
|
|
@@ -26,7 +28,7 @@ def bot(history: list):
|
|
| 26 |
|
| 27 |
|
| 28 |
with gr.Blocks() as demo:
|
| 29 |
-
chatbot = gr.Chatbot(elem_id="chatbot",
|
| 30 |
|
| 31 |
chat_input = gr.MultimodalTextbox(
|
| 32 |
interactive=True,
|
|
@@ -42,7 +44,7 @@ with gr.Blocks() as demo:
|
|
| 42 |
bot_msg = chat_msg.then(bot, chatbot, chatbot, api_name="bot_response")
|
| 43 |
bot_msg.then(lambda: gr.MultimodalTextbox(interactive=True), None, [chat_input])
|
| 44 |
|
| 45 |
-
chatbot.like(print_like_dislike, None, None
|
| 46 |
|
| 47 |
if __name__ == "__main__":
|
| 48 |
demo.launch()
|
|
|
|
| 9 |
|
| 10 |
|
| 11 |
def add_message(history, message):
|
| 12 |
+
user_msg = {"role": "user", "content": []}
|
| 13 |
for x in message["files"]:
|
| 14 |
+
user_msg["content"].append({"path": x})
|
| 15 |
if message["text"] is not None:
|
| 16 |
+
user_msg["content"].append(message["text"])
|
| 17 |
+
history.append(user_msg)
|
| 18 |
return history, gr.MultimodalTextbox(value=None, interactive=False)
|
| 19 |
|
| 20 |
|
|
|
|
| 28 |
|
| 29 |
|
| 30 |
with gr.Blocks() as demo:
|
| 31 |
+
chatbot = gr.Chatbot(elem_id="chatbot", like_user_message=True)
|
| 32 |
|
| 33 |
chat_input = gr.MultimodalTextbox(
|
| 34 |
interactive=True,
|
|
|
|
| 44 |
bot_msg = chat_msg.then(bot, chatbot, chatbot, api_name="bot_response")
|
| 45 |
bot_msg.then(lambda: gr.MultimodalTextbox(interactive=True), None, [chat_input])
|
| 46 |
|
| 47 |
+
chatbot.like(print_like_dislike, None, None)
|
| 48 |
|
| 49 |
if __name__ == "__main__":
|
| 50 |
demo.launch()
|