Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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=
|
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 |
-
|
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',
|