aliabd HF staff commited on
Commit
3e59775
1 Parent(s): 0591f53

Upload with huggingface_hub

Browse files
Files changed (3) hide show
  1. requirements.txt +1 -1
  2. run.ipynb +1 -1
  3. run.py +20 -21
requirements.txt CHANGED
@@ -1,2 +1,2 @@
1
 
2
- https://gradio-main-build.s3.amazonaws.com/092b7448e657811ec8c6a041b87314ac8842fb52/gradio-3.20.1-py3-none-any.whl
 
1
 
2
+ https://gradio-main-build.s3.amazonaws.com/f8159aa5f4bb4a86c84cda4f13f5db8dbef312ba/gradio-3.20.1-py3-none-any.whl
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": ["import gradio as gr\n", "from urllib.parse import quote\n", "\n", "with gr.Blocks() as demo:\n", " chatbot = gr.Chatbot(elem_id=\"chatbot\").style(height=500)\n", "\n", " with gr.Row():\n", " with gr.Column(scale=0.85):\n", " txt = gr.Textbox(\n", " show_label=False,\n", " placeholder=\"Enter text and press enter, or upload an image\",\n", " ).style(container=False)\n", " with gr.Column(scale=0.15, min_width=0):\n", " btn = gr.UploadButton(\"\ud83d\uddbc\ufe0f\", file_types=[\"image\"])\n", "\n", " def add_text(history, text):\n", " history = history + [(text, None)]\n", " return history, \"\"\n", "\n", " def add_image(history, image):\n", " history = history + [(f\"![](/file={quote(image.name)})\", None)]\n", " return history\n", "\n", " def bot_response(history):\n", " response = \"Cool!\"\n", " history[-1][1] = response\n", " return history\n", "\n", " txt.submit(add_text, [chatbot, txt], [chatbot, txt]).then(\n", " bot_response, chatbot, chatbot\n", " )\n", " btn.upload(add_image, [chatbot, btn], [chatbot]).then(\n", " bot_response, chatbot, chatbot\n", " )\n", "\n", "if __name__ == \"__main__\":\n", " demo.launch()\n"]}], "metadata": {}, "nbformat": 4, "nbformat_minor": 5}
 
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", "\n", "def add_text(history, text):\n", " history = history + [(text, None)]\n", " return history, \"\"\n", "\n", "def add_file(history, file):\n", " history = history + [((file.name,), None)]\n", " return history\n", "\n", "def bot(history):\n", " response = \"**That's cool!**\"\n", " history[-1][1] = response\n", " return history\n", "\n", "with gr.Blocks() as demo:\n", " chatbot = gr.Chatbot([], elem_id=\"chatbot\").style(height=750)\n", " \n", " with gr.Row():\n", " with gr.Column(scale=0.85):\n", " txt = gr.Textbox(\n", " show_label=False,\n", " placeholder=\"Enter text and press enter, or upload an image\",\n", " ).style(container=False)\n", " with gr.Column(scale=0.15, min_width=0):\n", " btn = gr.UploadButton(\"\ud83d\udcc1\", file_types=[\"image\", \"video\", \"audio\"])\n", " \n", " txt.submit(add_text, [chatbot, txt], [chatbot, txt]).then(\n", " bot, chatbot, chatbot\n", " )\n", " btn.upload(add_file, [chatbot, btn], [chatbot]).then(\n", " bot, chatbot, chatbot\n", " )\n", "\n", "if __name__ == \"__main__\":\n", " demo.launch()\n"]}], "metadata": {}, "nbformat": 4, "nbformat_minor": 5}
run.py CHANGED
@@ -1,9 +1,21 @@
1
  import gradio as gr
2
- from urllib.parse import quote
3
 
4
- with gr.Blocks() as demo:
5
- chatbot = gr.Chatbot(elem_id="chatbot").style(height=500)
 
 
 
 
 
6
 
 
 
 
 
 
 
 
 
7
  with gr.Row():
8
  with gr.Column(scale=0.85):
9
  txt = gr.Textbox(
@@ -11,26 +23,13 @@ with gr.Blocks() as demo:
11
  placeholder="Enter text and press enter, or upload an image",
12
  ).style(container=False)
13
  with gr.Column(scale=0.15, min_width=0):
14
- btn = gr.UploadButton("🖼️", file_types=["image"])
15
-
16
- def add_text(history, text):
17
- history = history + [(text, None)]
18
- return history, ""
19
-
20
- def add_image(history, image):
21
- history = history + [(f"![](/file={quote(image.name)})", None)]
22
- return history
23
-
24
- def bot_response(history):
25
- response = "Cool!"
26
- history[-1][1] = response
27
- return history
28
-
29
  txt.submit(add_text, [chatbot, txt], [chatbot, txt]).then(
30
- bot_response, chatbot, chatbot
31
  )
32
- btn.upload(add_image, [chatbot, btn], [chatbot]).then(
33
- bot_response, chatbot, chatbot
34
  )
35
 
36
  if __name__ == "__main__":
 
1
  import gradio as gr
 
2
 
3
+ def add_text(history, text):
4
+ history = history + [(text, None)]
5
+ return history, ""
6
+
7
+ def add_file(history, file):
8
+ history = history + [((file.name,), None)]
9
+ return history
10
 
11
+ def bot(history):
12
+ response = "**That's cool!**"
13
+ history[-1][1] = response
14
+ return history
15
+
16
+ with gr.Blocks() as demo:
17
+ chatbot = gr.Chatbot([], elem_id="chatbot").style(height=750)
18
+
19
  with gr.Row():
20
  with gr.Column(scale=0.85):
21
  txt = gr.Textbox(
 
23
  placeholder="Enter text and press enter, or upload an image",
24
  ).style(container=False)
25
  with gr.Column(scale=0.15, min_width=0):
26
+ btn = gr.UploadButton("📁", file_types=["image", "video", "audio"])
27
+
 
 
 
 
 
 
 
 
 
 
 
 
 
28
  txt.submit(add_text, [chatbot, txt], [chatbot, txt]).then(
29
+ bot, chatbot, chatbot
30
  )
31
+ btn.upload(add_file, [chatbot, btn], [chatbot]).then(
32
+ bot, chatbot, chatbot
33
  )
34
 
35
  if __name__ == "__main__":