Spaces:
Sleeping
Sleeping
fixed video error
Browse files- README.md +1 -1
- app.py +8 -4
- requirements.txt +1 -1
README.md
CHANGED
|
@@ -41,4 +41,4 @@ Build your personalized AI research group that automates continual, interactive
|
|
| 41 |
primaryClass={cs.AI},
|
| 42 |
url={https://arxiv.org/abs/2510.15624},
|
| 43 |
}
|
| 44 |
-
```
|
|
|
|
| 41 |
primaryClass={cs.AI},
|
| 42 |
url={https://arxiv.org/abs/2510.15624},
|
| 43 |
}
|
| 44 |
+
```
|
app.py
CHANGED
|
@@ -20,16 +20,20 @@ Build your personalized AI research group that automates continual, interactive
|
|
| 20 |
- π [Blog Post](https://freephdlabor.github.io)
|
| 21 |
"""
|
| 22 |
|
| 23 |
-
# YouTube video URL
|
| 24 |
-
youtube_url = "https://www.youtube.com/watch?v=xwG7dpUtues"
|
| 25 |
-
|
| 26 |
# Create Gradio interface
|
| 27 |
with gr.Blocks(theme=gr.themes.Soft()) as demo:
|
| 28 |
gr.Markdown(f"# {title}")
|
| 29 |
gr.Markdown(description)
|
| 30 |
|
| 31 |
gr.Markdown("## π₯ Demo Video")
|
| 32 |
-
gr.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
|
| 34 |
gr.Markdown("## π Research Paper")
|
| 35 |
gr.Markdown("""
|
|
|
|
| 20 |
- π [Blog Post](https://freephdlabor.github.io)
|
| 21 |
"""
|
| 22 |
|
|
|
|
|
|
|
|
|
|
| 23 |
# Create Gradio interface
|
| 24 |
with gr.Blocks(theme=gr.themes.Soft()) as demo:
|
| 25 |
gr.Markdown(f"# {title}")
|
| 26 |
gr.Markdown(description)
|
| 27 |
|
| 28 |
gr.Markdown("## π₯ Demo Video")
|
| 29 |
+
gr.HTML("""
|
| 30 |
+
<div style="display: flex; justify-content: center;">
|
| 31 |
+
<iframe width="700" height="394" src="https://www.youtube.com/embed/xwG7dpUtues"
|
| 32 |
+
frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
|
| 33 |
+
allowfullscreen>
|
| 34 |
+
</iframe>
|
| 35 |
+
</div>
|
| 36 |
+
""")
|
| 37 |
|
| 38 |
gr.Markdown("## π Research Paper")
|
| 39 |
gr.Markdown("""
|
requirements.txt
CHANGED
|
@@ -1 +1 @@
|
|
| 1 |
-
gradio==
|
|
|
|
| 1 |
+
gradio==5.49.1
|