kingabzpro commited on
Commit
90244f3
1 Parent(s): 8b11cfb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -43,11 +43,11 @@ with demo:
43
  </center>
44
  """
45
  )
46
- state = gr.Variable(default_value=[])
47
  chatbot = gr.Chatbot()
48
  text = gr.Textbox(
49
  label="Talk to Morty here... (press enter to submit)",
50
- default_value="How are you?",
51
  max_lines=1,
52
  )
53
 
 
43
  </center>
44
  """
45
  )
46
+ state = gr.Variable(value=[])
47
  chatbot = gr.Chatbot()
48
  text = gr.Textbox(
49
  label="Talk to Morty here... (press enter to submit)",
50
+ value="How are you?",
51
  max_lines=1,
52
  )
53