ajanz commited on
Commit
10ac5a3
1 Parent(s): daf64e1

textbox default value

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -19,7 +19,7 @@ sample_text = (
19
 
20
  textbox = gr.Textbox(
21
  label="Type your query here.",
22
- placeholder=sample_text, lines=10
23
  )
24
 
25
 
 
19
 
20
  textbox = gr.Textbox(
21
  label="Type your query here.",
22
+ value=sample_text, lines=10
23
  )
24
 
25