| import gradio as gr |
|
|
| |
| |
| |
| source_space_url = "https://selfit-camera-omni-image-editor.hf.space" |
|
|
| print("=== กำลังโหลดหน้า Interface ผ่าน Direct Embed Link ===") |
|
|
| with gr.Blocks(fill_height=True) as demo: |
| |
| |
| gr.HTML(f""" |
| <iframe |
| src="{source_space_url}" |
| frameborder="0" |
| width="100%" |
| height="100%" |
| style="min-height: 800px; border-radius: 8px;" |
| allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; getattr" |
| allowfullscreen> |
| </iframe> |
| """) |
|
|
| if __name__ == "__main__": |
| demo.launch() |