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...")