Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Hardware
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
saurav384
/
Meta_SAAS
like
0
No application file
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
saurav384
commited on
Jan 6
Commit
73c528b
·
verified
·
1 Parent(s):
6dce2d0
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+9
-0
app.py
ADDED
Viewed
@@ -0,0 +1,9 @@
1
+
from gradio_client import Client
2
+
3
+
client = Client("Qwen/Qwen-Image-2512")
4
+
result = client.predict(
5
+
"A cyberpunk city at night, ultra HD",
6
+
api_name="/predict"
7
+
)
8
+
9
+
print(result)