Spaces:
Running
Running
Ai Pr branch
#3
by
crystalai
- opened
- README.md +1 -1
- messages_testcase.py +0 -43
- requirements.txt +0 -1
- run.ipynb +1 -1
- run.py +15 -19
- tuples_testcase.py +0 -46
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: 4.24.0
|
9 |
app_file: run.py
|
10 |
pinned: false
|
11 |
hf_oauth: true
|
messages_testcase.py
DELETED
@@ -1,43 +0,0 @@
|
|
1 |
-
import gradio as gr
|
2 |
-
import time
|
3 |
-
|
4 |
-
# Chatbot demo with multimodal input (text, markdown, LaTeX, code blocks, image, audio, & video). Plus shows support for streaming text.
|
5 |
-
|
6 |
-
def print_like_dislike(x: gr.LikeData):
|
7 |
-
print(x.index, x.value, x.liked)
|
8 |
-
|
9 |
-
def add_message(history, message):
|
10 |
-
for x in message["files"]:
|
11 |
-
history.append({"role": "user", "content": {"path": x}})
|
12 |
-
if message["text"] is not None:
|
13 |
-
history.append({"role": "user", "content": message["text"]})
|
14 |
-
return history, gr.MultimodalTextbox(value=None, interactive=False)
|
15 |
-
|
16 |
-
def bot(history: list):
|
17 |
-
response = "**That's cool!**"
|
18 |
-
history.append({"role": "assistant", "content": ""})
|
19 |
-
for character in response:
|
20 |
-
history[-1]['content'] += character
|
21 |
-
time.sleep(0.05)
|
22 |
-
yield history
|
23 |
-
|
24 |
-
with gr.Blocks() as demo:
|
25 |
-
chatbot = gr.Chatbot(
|
26 |
-
[],
|
27 |
-
elem_id="chatbot",
|
28 |
-
bubble_full_width=False,
|
29 |
-
type="messages"
|
30 |
-
)
|
31 |
-
|
32 |
-
chat_input = gr.MultimodalTextbox(interactive=True,
|
33 |
-
file_count="multiple",
|
34 |
-
placeholder="Enter message or upload file...", show_label=False)
|
35 |
-
|
36 |
-
chat_msg = chat_input.submit(add_message, [chatbot, chat_input], [chatbot, chat_input])
|
37 |
-
bot_msg = chat_msg.then(bot, chatbot, chatbot, api_name="bot_response")
|
38 |
-
bot_msg.then(lambda: gr.MultimodalTextbox(interactive=True), None, [chat_input])
|
39 |
-
|
40 |
-
chatbot.like(print_like_dislike, None, None)
|
41 |
-
|
42 |
-
if __name__ == "__main__":
|
43 |
-
demo.launch()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
requirements.txt
DELETED
@@ -1 +0,0 @@
|
|
1 |
-
plotly
|
|
|
|
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": ["# Downloading files from the demo repo\n", "import os\n", "!wget -q https://github.com/gradio-app/gradio/raw/main/demo/chatbot_multimodal/
|
|
|
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": ["# Downloading files from the demo repo\n", "import os\n", "os.mkdir('files')\n", "!wget -q -O files/avatar.png https://github.com/gradio-app/gradio/raw/main/demo/chatbot_multimodal/files/avatar.png\n", "!wget -q -O files/lion.jpg https://github.com/gradio-app/gradio/raw/main/demo/chatbot_multimodal/files/lion.jpg"]}, {"cell_type": "code", "execution_count": null, "id": "44380577570523278879349135829904343037", "metadata": {}, "outputs": [], "source": ["import gradio as gr\n", "import os\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", "def add_message(history, message):\n", " for x in message[\"files\"]:\n", " history.append(((x,), None))\n", " if message[\"text\"] is not None:\n", " history.append((message[\"text\"], None))\n", " return history, gr.MultimodalTextbox(value=None, interactive=False)\n", "\n", "def bot(history):\n", " response = \"**That's cool!**\"\n", " history[-1][1] = \"\"\n", " for character in response:\n", " history[-1][1] += character\n", " time.sleep(0.05)\n", " yield history\n", "\n", "\n", "with gr.Blocks() as demo:\n", " chatbot = gr.Chatbot(\n", " [],\n", " elem_id=\"chatbot\",\n", " bubble_full_width=False,\n", " )\n", "\n", " chat_input = gr.MultimodalTextbox(interactive=True, file_types=[\"image\"], 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(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", "demo.queue()\n", "if __name__ == \"__main__\":\n", " demo.launch()\n"]}], "metadata": {}, "nbformat": 4, "nbformat_minor": 5}
|
run.py
CHANGED
@@ -1,4 +1,5 @@
|
|
1 |
import gradio as gr
|
|
|
2 |
import time
|
3 |
|
4 |
# Chatbot demo with multimodal input (text, markdown, LaTeX, code blocks, image, audio, & video). Plus shows support for streaming text.
|
@@ -7,42 +8,37 @@ import time
|
|
7 |
def print_like_dislike(x: gr.LikeData):
|
8 |
print(x.index, x.value, x.liked)
|
9 |
|
10 |
-
|
11 |
def add_message(history, message):
|
12 |
for x in message["files"]:
|
13 |
-
history.append(
|
14 |
if message["text"] is not None:
|
15 |
-
history.append(
|
16 |
return history, gr.MultimodalTextbox(value=None, interactive=False)
|
17 |
|
18 |
-
|
19 |
-
def bot(history: list):
|
20 |
response = "**That's cool!**"
|
21 |
-
history
|
22 |
for character in response:
|
23 |
-
history[-1][
|
24 |
time.sleep(0.05)
|
25 |
yield history
|
26 |
|
27 |
|
28 |
with gr.Blocks() as demo:
|
29 |
-
chatbot = gr.Chatbot(
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
file_count="multiple",
|
34 |
-
placeholder="Enter message or upload file...",
|
35 |
-
show_label=False,
|
36 |
-
sources=["microphone", "upload"],
|
37 |
)
|
38 |
|
39 |
-
|
40 |
-
|
41 |
-
)
|
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()
|
|
|
1 |
import gradio as gr
|
2 |
+
import os
|
3 |
import time
|
4 |
|
5 |
# Chatbot demo with multimodal input (text, markdown, LaTeX, code blocks, image, audio, & video). Plus shows support for streaming text.
|
|
|
8 |
def print_like_dislike(x: gr.LikeData):
|
9 |
print(x.index, x.value, x.liked)
|
10 |
|
|
|
11 |
def add_message(history, message):
|
12 |
for x in message["files"]:
|
13 |
+
history.append(((x,), None))
|
14 |
if message["text"] is not None:
|
15 |
+
history.append((message["text"], None))
|
16 |
return history, gr.MultimodalTextbox(value=None, interactive=False)
|
17 |
|
18 |
+
def bot(history):
|
|
|
19 |
response = "**That's cool!**"
|
20 |
+
history[-1][1] = ""
|
21 |
for character in response:
|
22 |
+
history[-1][1] += character
|
23 |
time.sleep(0.05)
|
24 |
yield history
|
25 |
|
26 |
|
27 |
with gr.Blocks() as demo:
|
28 |
+
chatbot = gr.Chatbot(
|
29 |
+
[],
|
30 |
+
elem_id="chatbot",
|
31 |
+
bubble_full_width=False,
|
|
|
|
|
|
|
|
|
32 |
)
|
33 |
|
34 |
+
chat_input = gr.MultimodalTextbox(interactive=True, file_types=["image"], placeholder="Enter message or upload file...", show_label=False)
|
35 |
+
|
36 |
+
chat_msg = chat_input.submit(add_message, [chatbot, chat_input], [chatbot, chat_input])
|
37 |
bot_msg = chat_msg.then(bot, chatbot, chatbot, api_name="bot_response")
|
38 |
bot_msg.then(lambda: gr.MultimodalTextbox(interactive=True), None, [chat_input])
|
39 |
|
40 |
+
chatbot.like(print_like_dislike, None, None)
|
41 |
|
42 |
+
demo.queue()
|
43 |
if __name__ == "__main__":
|
44 |
demo.launch()
|
tuples_testcase.py
DELETED
@@ -1,46 +0,0 @@
|
|
1 |
-
import gradio as gr
|
2 |
-
import plotly.express as px
|
3 |
-
|
4 |
-
# Chatbot demo with multimodal input (text, markdown, LaTeX, code blocks, image, audio, & video). Plus shows support for streaming text.
|
5 |
-
|
6 |
-
def random_plot():
|
7 |
-
df = px.data.iris()
|
8 |
-
fig = px.scatter(df, x="sepal_width", y="sepal_length", color="species",
|
9 |
-
size='petal_length', hover_data=['petal_width'])
|
10 |
-
return fig
|
11 |
-
|
12 |
-
def print_like_dislike(x: gr.LikeData):
|
13 |
-
print(x.index, x.value, x.liked)
|
14 |
-
|
15 |
-
def add_message(history, message):
|
16 |
-
for x in message["files"]:
|
17 |
-
history.append(((x,), None))
|
18 |
-
if message["text"] is not None:
|
19 |
-
history.append((message["text"], None))
|
20 |
-
return history, gr.MultimodalTextbox(value=None, interactive=False)
|
21 |
-
|
22 |
-
def bot(history):
|
23 |
-
history[-1][1] = "Cool!"
|
24 |
-
return history
|
25 |
-
|
26 |
-
fig = random_plot()
|
27 |
-
|
28 |
-
with gr.Blocks(fill_height=True) as demo:
|
29 |
-
chatbot = gr.Chatbot(
|
30 |
-
elem_id="chatbot",
|
31 |
-
bubble_full_width=False,
|
32 |
-
scale=1,
|
33 |
-
)
|
34 |
-
|
35 |
-
chat_input = gr.MultimodalTextbox(interactive=True,
|
36 |
-
file_count="multiple",
|
37 |
-
placeholder="Enter message or upload file...", show_label=False)
|
38 |
-
|
39 |
-
chat_msg = chat_input.submit(add_message, [chatbot, chat_input], [chatbot, chat_input])
|
40 |
-
bot_msg = chat_msg.then(bot, chatbot, chatbot, api_name="bot_response")
|
41 |
-
bot_msg.then(lambda: gr.MultimodalTextbox(interactive=True), None, [chat_input])
|
42 |
-
|
43 |
-
chatbot.like(print_like_dislike, None, None)
|
44 |
-
|
45 |
-
if __name__ == "__main__":
|
46 |
-
demo.launch()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|