angela2882 commited on
Commit
2962f70
·
verified ·
1 Parent(s): 27a2edc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -124,7 +124,7 @@ topics = """
124
  """
125
 
126
  # Setup the Gradio Blocks interface with custom layout components
127
- with gr.Blocks(theme= slay ) as demo:
128
  gr.Markdown(welcome_message) # Display the formatted welcome message
129
  with gr.Row():
130
  with gr.Column():
@@ -136,7 +136,7 @@ with gr.Blocks(theme= slay ) as demo:
136
  submit_button = gr.Button("Submit")
137
  submit_button.click(fn=query_model, inputs=question, outputs=answer)
138
 
139
- slay = gr.themes.Monochrome(
140
  primary_hue = "blue", secondary_hue = "gray"
141
  ).set(
142
  background_fill_primary = 'primary_200',
 
124
  """
125
 
126
  # Setup the Gradio Blocks interface with custom layout components
127
+ with gr.Blocks(theme = theme ) as demo:
128
  gr.Markdown(welcome_message) # Display the formatted welcome message
129
  with gr.Row():
130
  with gr.Column():
 
136
  submit_button = gr.Button("Submit")
137
  submit_button.click(fn=query_model, inputs=question, outputs=answer)
138
 
139
+ theme = gr.themes.Monochrome(
140
  primary_hue = "blue", secondary_hue = "gray"
141
  ).set(
142
  background_fill_primary = 'primary_200',