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
|
requirements.txt
CHANGED
|
@@ -1,2 +1,2 @@
|
|
| 1 |
-
gradio-client @ git+https://github.com/gradio-app/gradio@
|
| 2 |
-
https://gradio-pypi-previews.s3.amazonaws.com/
|
|
|
|
| 1 |
+
gradio-client @ git+https://github.com/gradio-app/gradio@d007e6cf617baba5c62e49ec2b7ce278aa863a79#subdirectory=client/python
|
| 2 |
+
https://gradio-pypi-previews.s3.amazonaws.com/d007e6cf617baba5c62e49ec2b7ce278aa863a79/gradio-6.0.0-py3-none-any.whl
|
run.ipynb
CHANGED
|
@@ -1 +1 @@
|
|
| 1 |
-
{"cells": [{"cell_type": "markdown", "id": "302934307671667531413257853548643485645", "metadata": {}, "source": ["# Gradio Demo: chatbot_examples"]}, {"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 os\n", "# Multimodal Chatbot demo that shows support for examples (example messages shown within the chatbot).\n", "\n", "def print_like_dislike(x: gr.LikeData):\n", " print(x.index, x.value, x.liked)\n", "\n", "def add_message(history, message):\n", " for x in message[\"files\"]:\n", " history.append((
|
|
|
|
| 1 |
+
{"cells": [{"cell_type": "markdown", "id": "302934307671667531413257853548643485645", "metadata": {}, "source": ["# Gradio Demo: chatbot_examples"]}, {"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 os\n", "# Multimodal Chatbot demo that shows support for examples (example messages shown within the chatbot).\n", "\n", "def print_like_dislike(x: gr.LikeData):\n", " print(x.index, x.value, x.liked)\n", "\n", "def add_message(history, message):\n", " for x in message[\"files\"]:\n", " history.append({\"role\": \"user\", \"content\": (x,)})\n", " if message[\"text\"] is not None:\n", " history.append({\"role\": \"user\", \"content\": message[\"text\"]})\n", " return history, gr.MultimodalTextbox(value=None, interactive=False)\n", "\n", "def append_example_message(x: gr.SelectData, history):\n", " if x.value[\"text\"] is not None:\n", " history.append({\"role\": \"user\", \"content\": x.value[\"text\"]})\n", " if \"files\" in x.value:\n", " if isinstance(x.value[\"files\"], list):\n", " for file in x.value[\"files\"]:\n", " history.append({\"role\": \"user\", \"content\": file})\n", " else:\n", " history.append({\"role\": \"user\", \"content\": x.value[\"files\"]})\n", " return history\n", "\n", "def respond(history):\n", " history.append({\"role\": \"assistant\", \"content\": \"Cool!\", \"options\": [{\"value\": \"Option 1\"}, {\"value\": \"Option 2\"}]})\n", " return history\n", "\n", "with gr.Blocks() as demo:\n", " chatbot = gr.Chatbot(\n", " elem_id=\"chatbot\",\n", " scale=1,\n", " placeholder='<h1 style=\"font-weight: bold; color: #FFFFFF; text-align: center; font-size: 48px; font-family: Arial, sans-serif;\">Welcome to Gradio!</h1>',\n", " examples=[{\"icon\": os.path.join(os.path.abspath(''), \"files/avatar.png\"), \"display_text\": \"Display Text Here!\", \"text\": \"Try this example with this audio.\", \"files\": [os.path.join(os.path.abspath(''), \"files/cantina.wav\")]},\n", " {\"text\": \"Try this example with this image.\", \"files\": [os.path.join(os.path.abspath(''), \"files/avatar.png\")]},\n", " {\"text\": \"This is just text, no files!\"},\n", " {\"text\": \"Try this example with this image.\", \"files\": [os.path.join(os.path.abspath(''), \"files/avatar.png\"), os.path.join(os.path.abspath(''), \"files/avatar.png\")]},\n", " {\"text\": \"Try this example with this Audio.\", \"files\": [os.path.join(os.path.abspath(''), \"files/cantina.wav\")]}]\n", " )\n", "\n", " chat_input = gr.MultimodalTextbox(interactive=True,\n", " file_count=\"multiple\",\n", " placeholder=\"Enter message or upload file...\", show_label=False)\n", "\n", " chat_msg = chat_input.submit(add_message, [chatbot, chat_input], [chatbot, chat_input])\n", " bot_msg = chat_msg.then(respond, 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", " chatbot.example_select(append_example_message, [chatbot], [chatbot]).then(respond, chatbot, chatbot, api_name=\"respond\")\n", "\n", "if __name__ == \"__main__\":\n", " demo.launch()\n"]}], "metadata": {}, "nbformat": 4, "nbformat_minor": 5}
|
run.py
CHANGED
|
@@ -7,30 +7,29 @@ def print_like_dislike(x: gr.LikeData):
|
|
| 7 |
|
| 8 |
def add_message(history, message):
|
| 9 |
for x in message["files"]:
|
| 10 |
-
history.append((
|
| 11 |
if message["text"] is not None:
|
| 12 |
-
history.append(
|
| 13 |
return history, gr.MultimodalTextbox(value=None, interactive=False)
|
| 14 |
|
| 15 |
def append_example_message(x: gr.SelectData, history):
|
| 16 |
if x.value["text"] is not None:
|
| 17 |
-
history.append(
|
| 18 |
if "files" in x.value:
|
| 19 |
if isinstance(x.value["files"], list):
|
| 20 |
for file in x.value["files"]:
|
| 21 |
-
history.append(
|
| 22 |
else:
|
| 23 |
-
history.append(
|
| 24 |
return history
|
| 25 |
|
| 26 |
def respond(history):
|
| 27 |
-
history
|
| 28 |
return history
|
| 29 |
|
| 30 |
with gr.Blocks() as demo:
|
| 31 |
chatbot = gr.Chatbot(
|
| 32 |
elem_id="chatbot",
|
| 33 |
-
bubble_full_width=False,
|
| 34 |
scale=1,
|
| 35 |
placeholder='<h1 style="font-weight: bold; color: #FFFFFF; text-align: center; font-size: 48px; font-family: Arial, sans-serif;">Welcome to Gradio!</h1>',
|
| 36 |
examples=[{"icon": os.path.join(os.path.dirname(__file__), "files/avatar.png"), "display_text": "Display Text Here!", "text": "Try this example with this audio.", "files": [os.path.join(os.path.dirname(__file__), "files/cantina.wav")]},
|
|
|
|
| 7 |
|
| 8 |
def add_message(history, message):
|
| 9 |
for x in message["files"]:
|
| 10 |
+
history.append({"role": "user", "content": (x,)})
|
| 11 |
if message["text"] is not None:
|
| 12 |
+
history.append({"role": "user", "content": message["text"]})
|
| 13 |
return history, gr.MultimodalTextbox(value=None, interactive=False)
|
| 14 |
|
| 15 |
def append_example_message(x: gr.SelectData, history):
|
| 16 |
if x.value["text"] is not None:
|
| 17 |
+
history.append({"role": "user", "content": x.value["text"]})
|
| 18 |
if "files" in x.value:
|
| 19 |
if isinstance(x.value["files"], list):
|
| 20 |
for file in x.value["files"]:
|
| 21 |
+
history.append({"role": "user", "content": file})
|
| 22 |
else:
|
| 23 |
+
history.append({"role": "user", "content": x.value["files"]})
|
| 24 |
return history
|
| 25 |
|
| 26 |
def respond(history):
|
| 27 |
+
history.append({"role": "assistant", "content": "Cool!", "options": [{"value": "Option 1"}, {"value": "Option 2"}]})
|
| 28 |
return history
|
| 29 |
|
| 30 |
with gr.Blocks() as demo:
|
| 31 |
chatbot = gr.Chatbot(
|
| 32 |
elem_id="chatbot",
|
|
|
|
| 33 |
scale=1,
|
| 34 |
placeholder='<h1 style="font-weight: bold; color: #FFFFFF; text-align: center; font-size: 48px; font-family: Arial, sans-serif;">Welcome to Gradio!</h1>',
|
| 35 |
examples=[{"icon": os.path.join(os.path.dirname(__file__), "files/avatar.png"), "display_text": "Display Text Here!", "text": "Try this example with this audio.", "files": [os.path.join(os.path.dirname(__file__), "files/cantina.wav")]},
|