Spaces:
Sleeping
Sleeping
initial commit
Browse files
README.md
CHANGED
|
@@ -1,14 +1,18 @@
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
emoji: 🚀
|
| 4 |
colorFrom: red
|
| 5 |
colorTo: red
|
| 6 |
sdk: docker
|
| 7 |
app_port: 8501
|
| 8 |
tags:
|
| 9 |
-
|
| 10 |
pinned: false
|
| 11 |
-
short_description:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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()
|