cindywqng commited on
Commit
a9e7f16
·
verified ·
1 Parent(s): 49f8dca

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -158,8 +158,8 @@ def display_iframe():
158
  return iframe
159
 
160
  theme = gr.themes.Monochrome(
161
- primary_hue="234,210,203",
162
- secondary_hue="227,234,218",
163
  ).set(
164
  background_fill_primary='*primary_200',
165
  background_fill_primary_dark='*primary_200',
@@ -183,7 +183,7 @@ with gr.Blocks(theme=theme) as demo:
183
  with gr.Row():
184
  with gr.Column():
185
  question = gr.Textbox(label="Your Request", placeholder="What would you like to talk about?")
186
- answer = gr.Textbox(label="CalmConnect's Response", placeholder="CalmConnect will respond here...", interactive=False, lines=10)
187
  submit_button = gr.Button("Submit")
188
  submit_button.click(fn=query_model, inputs=question, outputs=answer)
189
 
 
158
  return iframe
159
 
160
  theme = gr.themes.Monochrome(
161
+ primary_hue="pink",
162
+ secondary_hue="green",
163
  ).set(
164
  background_fill_primary='*primary_200',
165
  background_fill_primary_dark='*primary_200',
 
183
  with gr.Row():
184
  with gr.Column():
185
  question = gr.Textbox(label="Your Request", placeholder="What would you like to talk about?")
186
+ answer = gr.Textbox(label="CalmConnect's Response", placeholder="CalmConnect will respond here...", interactive=False, lines=17)
187
  submit_button = gr.Button("Submit")
188
  submit_button.click(fn=query_model, inputs=question, outputs=answer)
189