Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -88,7 +88,10 @@ def generate_readme(repo_input):
|
|
| 88 |
except Exception as e:
|
| 89 |
return f"Error generating README: {str(e)}"
|
| 90 |
|
| 91 |
-
with gr.Blocks(
|
|
|
|
|
|
|
|
|
|
| 92 |
gr.Markdown("# π Hugging Face Repository README Generator")
|
| 93 |
|
| 94 |
with gr.Row():
|
|
|
|
| 88 |
except Exception as e:
|
| 89 |
return f"Error generating README: {str(e)}"
|
| 90 |
|
| 91 |
+
with gr.Blocks(
|
| 92 |
+
theme=os.environ.get("gradio_theme"),
|
| 93 |
+
title="HF Repo README Generator",
|
| 94 |
+
) as demo:
|
| 95 |
gr.Markdown("# π Hugging Face Repository README Generator")
|
| 96 |
|
| 97 |
with gr.Row():
|