File size: 226 Bytes
422beae
82ec8ee
 
 
 
 
 
 
 
a2fa856
82ec8ee
 
1
2
3
4
5
6
7
8
9
10
11
12
import gradio as gr
import os


HF_TOKEN = os.environ["HF_TOKEN"]

url = "spaces/JasonData/Hidden_GEMINI_extractor"

with gr.Blocks(theme=gr.themes.Soft()) as demo:
    gr.load(url, src="spaces", token=HF_TOKEN)

demo.launch()