From 4ab2b0893e9b8c76a437fd2f10c7eb38cb2009a6 Mon Sep 17 00:00:00 2001 From: Sandeep Gangaram Date: Wed, 11 Dec 2024 23:21:57 +0530 Subject: [PATCH] rename file --- ...week2_multimodal_chatbot_with_audio.ipynb} | 45 ++++++++++++++----- 1 file changed, 33 insertions(+), 12 deletions(-) rename week2/community-contributions/{week2_solution_with_audio.ipynb => week2_multimodal_chatbot_with_audio.ipynb} (94%) diff --git a/week2/community-contributions/week2_solution_with_audio.ipynb b/week2/community-contributions/week2_multimodal_chatbot_with_audio.ipynb similarity index 94% rename from week2/community-contributions/week2_solution_with_audio.ipynb rename to week2/community-contributions/week2_multimodal_chatbot_with_audio.ipynb index 97a8e2c..daff689 100644 --- a/week2/community-contributions/week2_solution_with_audio.ipynb +++ b/week2/community-contributions/week2_multimodal_chatbot_with_audio.ipynb @@ -375,17 +375,46 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 31, "id": "4ded9b3f-83e1-4971-9714-4894f2982b5a", "metadata": { "scrolled": true }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "* Running on local URL: http://127.0.0.1:7866\n", + "\n", + "To create a public link, set `share=True` in `launch()`.\n" + ] + }, + { + "data": { + "text/html": [ + "
" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/plain": [] + }, + "execution_count": 31, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "with gr.Blocks() as ui:\n", " with gr.Row():\n", - " chatbot = gr.Chatbot(height=500, type=\"messages\")\n", - " # image_output = gr.Image(height=500)\n", + " chatbot = gr.Chatbot(height=500, type=\"messages\", label=\"Multimodal Technical Expert Chatbot\")\n", " with gr.Row():\n", " entry = gr.Textbox(label=\"Ask our technical expert anything:\")\n", " audio_input = gr.Audio(\n", @@ -420,14 +449,6 @@ "ui.launch(inbrowser=True)" ] }, - { - "cell_type": "code", - "execution_count": null, - "id": "da663d73-dd2a-4fff-84df-2209cf2b330b", - "metadata": {}, - "outputs": [], - "source": [] - }, { "cell_type": "code", "execution_count": null,