RajuKandasamy commited on
Commit
dbc8d08
1 Parent(s): c768c74

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -44,7 +44,7 @@ chatbot_service = ChatbotService()
44
  with gr.Blocks() as demo:
45
  chatbot = gr.Chatbot()
46
  with gr.Row():
47
- msg = gr.Textbox(placeholder="Type your message here...", inputs="text",outputs="text", label="Story Prompt:")
48
  run = gr.Button("Run")
49
  examples_dropdown = gr.Dropdown(choices=example_questions, label="Select an example prompt")
50
  examples_dropdown.change(fn=lambda x: x, inputs=examples_dropdown, outputs=msg)
 
44
  with gr.Blocks() as demo:
45
  chatbot = gr.Chatbot()
46
  with gr.Row():
47
+ msg = gr.Textbox(placeholder="Type your message here...", label="Story Prompt:")
48
  run = gr.Button("Run")
49
  examples_dropdown = gr.Dropdown(choices=example_questions, label="Select an example prompt")
50
  examples_dropdown.change(fn=lambda x: x, inputs=examples_dropdown, outputs=msg)