chansung commited on
Commit
1e6519e
·
1 Parent(s): 74bda91

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -1
app.py CHANGED
@@ -8,6 +8,10 @@ STYLE = """
8
  border: none !important;
9
  background: none !important;
10
  }
 
 
 
 
11
  """
12
 
13
  get_local_storage = """
@@ -111,7 +115,10 @@ with gr.Blocks(css=STYLE) as block:
111
  fifth = gr.Button("5th", elem_classes=["custom-btn"])
112
  with gr.Column(scale=4):
113
  chatbot = gr.Chatbot(elem_id='chatbot')
114
- instruction_txtbox = gr.Textbox(placeholder="What do you want to say to AI?", label="Instruction")
 
 
 
115
 
116
  first.click(
117
  initialize,
 
8
  border: none !important;
9
  background: none !important;
10
  }
11
+
12
+ #prompt-txt {
13
+
14
+ }
15
  """
16
 
17
  get_local_storage = """
 
115
  fifth = gr.Button("5th", elem_classes=["custom-btn"])
116
  with gr.Column(scale=4):
117
  chatbot = gr.Chatbot(elem_id='chatbot')
118
+ instruction_txtbox = gr.Textbox(
119
+ placeholder="What do you want to say to AI?", label="",
120
+ elem_id="prompt-txt"
121
+ )
122
 
123
  first.click(
124
  initialize,