giladbecher commited on
Commit
2d263ff
·
verified ·
1 Parent(s): d174da9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +16 -1
app.py CHANGED
@@ -143,6 +143,21 @@ with gr.Blocks(theme=gr.themes.Soft(), css=custom_css, title="PokeMatch AI") as
143
 
144
  gr.Markdown("---")
145
  gr.Markdown("Created for Data Science Assignment • Powered by Hugging Face & OpenAI CLIP")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
146
 
147
- # הרצת האפליקציה
148
  demo.launch()
 
143
 
144
  gr.Markdown("---")
145
  gr.Markdown("Created for Data Science Assignment • Powered by Hugging Face & OpenAI CLIP")
146
+ # --- PART 4: VIDEO PRESENTATION ---
147
+ gr.Markdown("---")
148
+ gr.Markdown("### 🎥 Project Presentation")
149
+
150
+ video_html = """
151
+ <div style="display: flex; justify-content: center;">
152
+ <iframe width="800" height="450"
153
+ src="https://www.youtube.com/embed/fr3Og1y7oeg"
154
+ title="YouTube video player"
155
+ frameborder="0"
156
+ allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
157
+ allowfullscreen>
158
+ </iframe>
159
+ </div>
160
+ """
161
+ gr.HTML(video_html)
162
 
 
163
  demo.launch()