MaxGab commited on
Commit
7975860
·
verified ·
1 Parent(s): 8b1ad97

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -4
app.py CHANGED
@@ -1,10 +1,9 @@
1
  import gradio as gr
2
- from gradio_client import Client
3
 
4
- with gr.Blocks(fill_height=True) as demo:
5
  with gr.Sidebar():
6
- gr.Markdown("# Inference Provider")
7
- gr.Markdown("This Space showcases the black-forest-labs/FLUX.1-dev model, served by the nebius API. Sign in with your Hugging Face account to use this API.")
8
  button = gr.LoginButton("Sign in")
9
  gr.load("models/black-forest-labs/FLUX.1-dev", accept_token=button, provider="nebius")
10
 
 
1
  import gradio as gr
 
2
 
3
+ with gr.Blocks(fill_height=True) as web:
4
  with gr.Sidebar():
5
+ gr.Markdown("...")
6
+ gr.Markdown("black-forest-labs/FLUX.1-dev model. Sign in using hugging face account.")
7
  button = gr.LoginButton("Sign in")
8
  gr.load("models/black-forest-labs/FLUX.1-dev", accept_token=button, provider="nebius")
9