Spaces:
Runtime error
Runtime error
import gradio as gr | |
import os | |
USERNAME = os.environ.get("USERNAME") | |
PASSWORD = os.environ.get("PASSWORD") | |
with gr.Blocks() as demo: | |
gr.Markdown("# Welcome to the TradingGEN app") | |
demo.launch(auth=(USERNAME,PASSWORD)) |