####################################################################### | |
####################################################################### | |
### ### | |
### The actual code of vibe-shopping the is here: ### | |
### https://huggingface.co/spaces/sitatech/vibe-shopping ### | |
### ### | |
####################################################################### | |
####################################################################### | |
import gradio as gr | |
with gr.Blocks(fill_height=True) as demo: | |
gr.HTML( | |
value=""" | |
<div style="width: 100%; height: 100vh"> | |
<iframe | |
src="https://sitatech-vibe-shopping.hf.space" | |
frameborder="0" | |
width="100%" | |
height="100%" | |
allow="microphone" | |
></iframe> | |
</div> | |
""", | |
padding=False, | |
container=False | |
) | |
demo.launch() |