From a0c9f6d2160f92340a1a7c15e0c44599bff25b6e Mon Sep 17 00:00:00 2001 From: LiorDav Date: Wed, 6 Nov 2024 18:29:16 +0000 Subject: [PATCH] Update app.py --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index 413df5a..7f90b3e 100644 --- a/app.py +++ b/app.py @@ -30,7 +30,7 @@ footer { # Custom Gradio app with additional features with gr.Blocks(css=BACKGROUND_CSS) as demo: # User input components - user_name = gr.Textbox(label="Enter your name", placeholder="Your name here...", value="Guest") + user_name = gr.Textbox(label="Enter your name", placeholder="Your name here...", value="What is your name?") emotion_picker = gr.Dropdown(choices=["😁", "😩", "😡", "😢","😭","😒","😣","🥰","😬"], label="Select your mood", value="🙂") chatbot = gr.Chatbot(type="messages") msg = gr.Textbox(placeholder="Type your message here...")