edli commited on
Commit
f0358f3
Β·
verified Β·
1 Parent(s): 2d01cd6

fixed video error

Browse files
Files changed (3) hide show
  1. README.md +1 -1
  2. app.py +8 -4
  3. 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.Video(value=youtube_url, label="Watch freephdlabor in action")
 
 
 
 
 
 
 
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==4.44.0
 
1
+ gradio==5.49.1