Upload folder using huggingface_hub
Browse files
app.py
CHANGED
|
@@ -198,7 +198,9 @@ def export_csv(d):
|
|
| 198 |
|
| 199 |
|
| 200 |
with gr.Blocks(
|
| 201 |
-
gr.themes.Soft(),
|
|
|
|
|
|
|
| 202 |
) as ankigen:
|
| 203 |
gr.Markdown("# 📚 AnkiGen - Anki Card Generator")
|
| 204 |
gr.Markdown("#### Generate an LLM generated Anki comptible csv based on your subject and preferences.") #noqa
|
|
@@ -247,7 +249,7 @@ with gr.Blocks(
|
|
| 247 |
"Example",
|
| 248 |
],
|
| 249 |
interactive=False,
|
| 250 |
-
|
| 251 |
)
|
| 252 |
export_button = gr.Button("Export to CSV")
|
| 253 |
download_link = gr.File(interactive=False, visible=False)
|
|
|
|
| 198 |
|
| 199 |
|
| 200 |
with gr.Blocks(
|
| 201 |
+
gr.themes.Soft(),
|
| 202 |
+
title="AnkiGen",
|
| 203 |
+
css="#footer{display:none !important} .tall-dataframe{height: 800px !important}"
|
| 204 |
) as ankigen:
|
| 205 |
gr.Markdown("# 📚 AnkiGen - Anki Card Generator")
|
| 206 |
gr.Markdown("#### Generate an LLM generated Anki comptible csv based on your subject and preferences.") #noqa
|
|
|
|
| 249 |
"Example",
|
| 250 |
],
|
| 251 |
interactive=False,
|
| 252 |
+
elem_classes="tall-dataframe"
|
| 253 |
)
|
| 254 |
export_button = gr.Button("Export to CSV")
|
| 255 |
download_link = gr.File(interactive=False, visible=False)
|