jusiflix commited on
Commit
19ad811
·
verified ·
1 Parent(s): d04814c

initial commit

Browse files
Files changed (2) hide show
  1. README.md +7 -3
  2. app.py +10 -0
README.md CHANGED
@@ -1,14 +1,18 @@
1
  ---
2
- title: Streamlit Template Space
3
  emoji: 🚀
4
  colorFrom: red
5
  colorTo: red
6
  sdk: docker
7
  app_port: 8501
8
  tags:
9
- - streamlit
10
  pinned: false
11
- short_description: Streamlit template space
 
 
 
 
12
  ---
13
 
14
  # Welcome to Streamlit!
 
1
  ---
2
+ title: UltraRealisticInflunceer
3
  emoji: 🚀
4
  colorFrom: red
5
  colorTo: red
6
  sdk: docker
7
  app_port: 8501
8
  tags:
9
+ - streamlit
10
  pinned: false
11
+ short_description: Ultra-realistic influencer image generation powered by a hig
12
+ license: apache-2.0
13
+ hf_oauth: true
14
+ hf_oauth_scopes:
15
+ - inference-api
16
  ---
17
 
18
  # Welcome to Streamlit!
app.py ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ with gr.Blocks(fill_height=True) as demo:
4
+ with gr.Sidebar():
5
+ gr.Markdown("# Inference Provider")
6
+ gr.Markdown("This Space showcases the jusiflix/UltraRealisticInfluncer model, served by the wavespeed API. Sign in with your Hugging Face account to use this API.")
7
+ button = gr.LoginButton("Sign in")
8
+ gr.load("models/jusiflix/UltraRealisticInfluncer", accept_token=button, provider="wavespeed")
9
+
10
+ demo.launch()