burtenshaw
commited on
Commit
·
81f6bfd
1
Parent(s):
4acfb6d
fix intro text so it shows up
Browse files
app.py
CHANGED
|
@@ -284,7 +284,7 @@ with gr.Blocks() as demo:
|
|
| 284 |
This application will review your smolagents code, and provide feedback on your solutions. This exercise is not reviewed or certified! It's about trying out smolagents for the first time.
|
| 285 |
|
| 286 |
ℹ️ Log in first, then click 'Start' to begin. Complete each coding challenge and click 'Next' to proceed. You'll get feedback on your solutions at the end."""
|
| 287 |
-
gr.Markdown(intro_text)
|
| 288 |
with gr.Row(variant="panel"):
|
| 289 |
with gr.Column():
|
| 290 |
question_text = gr.Markdown("")
|
|
|
|
| 284 |
This application will review your smolagents code, and provide feedback on your solutions. This exercise is not reviewed or certified! It's about trying out smolagents for the first time.
|
| 285 |
|
| 286 |
ℹ️ Log in first, then click 'Start' to begin. Complete each coding challenge and click 'Next' to proceed. You'll get feedback on your solutions at the end."""
|
| 287 |
+
intro_text = gr.Markdown(intro_text)
|
| 288 |
with gr.Row(variant="panel"):
|
| 289 |
with gr.Column():
|
| 290 |
question_text = gr.Markdown("")
|