Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -162,7 +162,16 @@ def main_interface(uploaded_files, name, number_of_sections, difficulty_level, *
|
|
| 162 |
def generate_interface():
|
| 163 |
with gr.Blocks() as demo:
|
| 164 |
with gr.Row():
|
| 165 |
-
gr.Markdown(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 166 |
|
| 167 |
with gr.Row():
|
| 168 |
uploaded_files = gr.File(label="Upload PDF Files", file_types=['.pdf'], file_count="multiple")
|
|
|
|
| 162 |
def generate_interface():
|
| 163 |
with gr.Blocks() as demo:
|
| 164 |
with gr.Row():
|
| 165 |
+
gr.Markdown(
|
| 166 |
+
"""
|
| 167 |
+
<div style="text-align: center; font-size: 40px; font-weight: bold; color: #4A90E2;">
|
| 168 |
+
Question Paper Generator
|
| 169 |
+
</div>
|
| 170 |
+
<div style="text-align: center; font-size: 20px; color: #7D7D7D; margin-top: 10px;">
|
| 171 |
+
"Effortless paper creation with just a click!"
|
| 172 |
+
</div>
|
| 173 |
+
"""
|
| 174 |
+
)
|
| 175 |
|
| 176 |
with gr.Row():
|
| 177 |
uploaded_files = gr.File(label="Upload PDF Files", file_types=['.pdf'], file_count="multiple")
|