playground-llm / app.py
aliabd's picture
aliabd HF Staff
Update app.py
92119f4 verified
raw
history blame
317 Bytes
import gradio as gr
js = """
function redirect()
{
const current_path = window.location.pathname;
const cloudflare_preview = 'https://41e124ab.gradio-website.pages.dev';
const url = current_path + cloudflare_preview
window.location.href = url;
}
"""
with gr.Blocks(js=js) as demo:
pass
demo.launch()