Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -38,6 +38,7 @@ body {
|
|
38 |
display: none;
|
39 |
}
|
40 |
"""
|
|
|
41 |
|
42 |
# Erstelle die Gradio-Schnittstelle
|
43 |
iface = gr.Interface(
|
@@ -46,9 +47,10 @@ iface = gr.Interface(
|
|
46 |
outputs=gr.Markdown(),
|
47 |
title="Frag mich einfach!",
|
48 |
description="",
|
49 |
-
live=True,
|
50 |
allow_flagging="never",
|
51 |
-
css=css
|
|
|
52 |
)
|
53 |
|
54 |
iface.dependencies[0]['show_progress'] = "hidden"
|
|
|
38 |
display: none;
|
39 |
}
|
40 |
"""
|
41 |
+
theme = 'syddharth/gray-minimal'
|
42 |
|
43 |
# Erstelle die Gradio-Schnittstelle
|
44 |
iface = gr.Interface(
|
|
|
47 |
outputs=gr.Markdown(),
|
48 |
title="Frag mich einfach!",
|
49 |
description="",
|
50 |
+
live=True,
|
51 |
allow_flagging="never",
|
52 |
+
css=css,
|
53 |
+
theme=theme # Hier fügst du das Theme hinzu
|
54 |
)
|
55 |
|
56 |
iface.dependencies[0]['show_progress'] = "hidden"
|