Update app.py
Browse files
app.py
CHANGED
|
@@ -141,8 +141,10 @@ css = """
|
|
| 141 |
}
|
| 142 |
"""
|
| 143 |
|
|
|
|
|
|
|
| 144 |
# Create Gradio interface
|
| 145 |
-
with gr.Blocks(title="Athena Playground Chat", css=css) as demo:
|
| 146 |
gr.Markdown("# 🚀 Athena Playground Chat")
|
| 147 |
gr.Markdown("*Powered by HuggingFace ZeroGPU*")
|
| 148 |
|
|
|
|
| 141 |
}
|
| 142 |
"""
|
| 143 |
|
| 144 |
+
theme = gr.themes.Monochrome()
|
| 145 |
+
|
| 146 |
# Create Gradio interface
|
| 147 |
+
with gr.Blocks(title="Athena Playground Chat", css=css, theme=theme) as demo:
|
| 148 |
gr.Markdown("# 🚀 Athena Playground Chat")
|
| 149 |
gr.Markdown("*Powered by HuggingFace ZeroGPU*")
|
| 150 |
|