File size: 358 Bytes
1d9ce47
 
7975860
1d9ce47
7975860
 
1d9ce47
 
d1c7f45
8b1ad97
1
2
3
4
5
6
7
8
9
10
import gradio as gr

with gr.Blocks(fill_height=True) as web:
    with gr.Sidebar():
        gr.Markdown("...")
        gr.Markdown("black-forest-labs/FLUX.1-dev model. Sign in using hugging face account.")
        button = gr.LoginButton("Sign in")
    gr.load("models/black-forest-labs/FLUX.1-dev", accept_token=button, provider="nebius")
    
web.launch()