File size: 1,818 Bytes
0591f53
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}