Spaces:
Running
Running
Jonas Wiesli
commited on
Commit
·
49ebf6b
1
Parent(s):
7458ac6
upload fix for missing font
Browse files- app.py +3 -3
- requirements.txt +1 -1
app.py
CHANGED
|
@@ -4,10 +4,10 @@ import openai
|
|
| 4 |
print(gr.themes.GoogleFont("Silkscreen"))
|
| 5 |
theme = gr.themes.Monochrome(
|
| 6 |
primary_hue="purple",
|
| 7 |
-
secondary_hue="
|
| 8 |
text_size="text_lg",
|
| 9 |
-
radius_size="radius_sm"
|
| 10 |
-
font=[gr.themes.GoogleFont("Silkscreen"), 'ui-sans-serif', 'system-ui', 'sans-serif'],
|
| 11 |
).set(
|
| 12 |
body_background_fill='*primary_100',
|
| 13 |
body_background_fill_dark='*primary_950',
|
|
|
|
| 4 |
print(gr.themes.GoogleFont("Silkscreen"))
|
| 5 |
theme = gr.themes.Monochrome(
|
| 6 |
primary_hue="purple",
|
| 7 |
+
secondary_hue="blue",
|
| 8 |
text_size="text_lg",
|
| 9 |
+
radius_size="radius_sm"
|
| 10 |
+
# font=[gr.themes.GoogleFont("Silkscreen"), 'ui-sans-serif', 'system-ui', 'sans-serif'],
|
| 11 |
).set(
|
| 12 |
body_background_fill='*primary_100',
|
| 13 |
body_background_fill_dark='*primary_950',
|
requirements.txt
CHANGED
|
@@ -1,2 +1,2 @@
|
|
| 1 |
openai==0.27.4
|
| 2 |
-
gradio~=3.
|
|
|
|
| 1 |
openai==0.27.4
|
| 2 |
+
gradio~=3.27.0
|