Update app.py
Browse files
app.py
CHANGED
@@ -129,6 +129,13 @@ with demo:
|
|
129 |
search_output = gr.Textbox(label="Content Discovery Search String")
|
130 |
graph_output = gr.Image(label="Your Educational Landscape")
|
131 |
message_output = gr.Textbox(label="Landscape Status")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
132 |
|
133 |
generate_btn.click(
|
134 |
add_to_graph,
|
|
|
129 |
search_output = gr.Textbox(label="Content Discovery Search String")
|
130 |
graph_output = gr.Image(label="Your Educational Landscape")
|
131 |
message_output = gr.Textbox(label="Landscape Status")
|
132 |
+
|
133 |
+
examples = [
|
134 |
+
["Sarah Johnson", "Oakville District School Board", "Earth Science", "Grade 7", "Understand the water cycle and its impact on Earth's climate", "Create a terrarium to model the water cycle", "Group presentation on terrarium observations", "Terrarium kit, climate diagrams"]
|
135 |
+
]
|
136 |
+
|
137 |
+
gr.Examples(examples=examples, inputs=[teacher_name, school_board, subject, grade_level, learning_objective, activity, assessment, resource])
|
138 |
+
|
139 |
|
140 |
generate_btn.click(
|
141 |
add_to_graph,
|