csv_test / app.py
JasonData's picture
Update app.py
82ec8ee verified
raw
history blame
229 Bytes
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", hf_token=HF_TOKEN)
demo.launch()