Update app.py
Browse files
app.py
CHANGED
@@ -14,7 +14,7 @@ with demo:
|
|
14 |
with gr.Row():
|
15 |
teacher_name = gr.Textbox(label="Teacher Name (Required)", placeholder="Enter the teacher's full name", info="e.g., Sarah Johnson")
|
16 |
school_board = gr.Textbox(label="School Board/Region (Optional)", placeholder="Enter the school board or region", info="e.g., Oakville District School Board")
|
17 |
-
country_authority = gr.Textbox(label="Country Authority (Optional)", placeholder="Enter the country-level education authority", info="e.g., Ministry of
|
18 |
|
19 |
with gr.Row():
|
20 |
subject = gr.Textbox(label="Subject (Required)", placeholder="Enter the subject name", info="e.g., Earth Science")
|
@@ -191,12 +191,6 @@ with demo:
|
|
191 |
search_output, graph_output, message_output
|
192 |
]
|
193 |
)
|
194 |
-
|
195 |
-
gr.Markdown("""
|
196 |
-
### License: CC BY-NC-SA 4.0
|
197 |
-
[](https://creativecommons.org/licenses/by-nc-sa/4.0/)
|
198 |
-
This project is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. [Learn more](https://creativecommons.org/licenses/by-nc-sa/4.0/).
|
199 |
-
""")
|
200 |
|
201 |
# Add Markdown section explaining the purpose and use of the app
|
202 |
gr.Markdown("""
|
@@ -231,5 +225,11 @@ with demo:
|
|
231 |
EduScape ensures that teachers can organize their lessons effectively while aligning with the curriculum and discovering resources to enhance their lesson delivery, with flexibility to include as much or as little detail as they prefer.
|
232 |
""")
|
233 |
|
|
|
|
|
|
|
|
|
|
|
|
|
234 |
# Launch the EduScape app
|
235 |
demo.launch()
|
|
|
14 |
with gr.Row():
|
15 |
teacher_name = gr.Textbox(label="Teacher Name (Required)", placeholder="Enter the teacher's full name", info="e.g., Sarah Johnson")
|
16 |
school_board = gr.Textbox(label="School Board/Region (Optional)", placeholder="Enter the school board or region", info="e.g., Oakville District School Board")
|
17 |
+
country_authority = gr.Textbox(label="Country Authority (Optional)", placeholder="Enter the country-level education authority", info="e.g., Ministry of Education")
|
18 |
|
19 |
with gr.Row():
|
20 |
subject = gr.Textbox(label="Subject (Required)", placeholder="Enter the subject name", info="e.g., Earth Science")
|
|
|
191 |
search_output, graph_output, message_output
|
192 |
]
|
193 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
194 |
|
195 |
# Add Markdown section explaining the purpose and use of the app
|
196 |
gr.Markdown("""
|
|
|
225 |
EduScape ensures that teachers can organize their lessons effectively while aligning with the curriculum and discovering resources to enhance their lesson delivery, with flexibility to include as much or as little detail as they prefer.
|
226 |
""")
|
227 |
|
228 |
+
gr.Markdown("""
|
229 |
+
### License: CC BY-NC-SA 4.0
|
230 |
+
|
231 |
+
This project is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. [Learn more](https://creativecommons.org/licenses/by-nc-sa/4.0/).
|
232 |
+
""")
|
233 |
+
|
234 |
# Launch the EduScape app
|
235 |
demo.launch()
|