Linoy Tsaban commited on
Commit
3cdacdf
1 Parent(s): c25e2cc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.py CHANGED
@@ -1,4 +1,10 @@
1
  import gradio as gr
 
 
 
 
 
 
2
 
3
  def greet(name):
4
  return "Hello " + name + "!!"
 
1
  import gradio as gr
2
+ import torch
3
+ import requests
4
+ from io import BytesIO
5
+ from diffusers import StableDiffusionPipeline
6
+ from diffusers import DDIMScheduler
7
+
8
 
9
  def greet(name):
10
  return "Hello " + name + "!!"