Teotonix commited on
Commit
e3a4723
·
verified ·
1 Parent(s): 9fc0fa2

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -0
app.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ # Bu, dünyanın en popüler ücretsiz görsel oluşturma API'sini kullanır
4
+ demo = gr.load("models/runwayml/stable-diffusion-v1-5")
5
+
6
+ if __name__ == "__main__":
7
+ demo.launch()