eggarsway commited on
Commit
77a6c82
·
1 Parent(s): 65f6c54
Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -1,9 +1,8 @@
1
- import DirectedDiffusion
2
  import gradio as gr
3
 
4
  def greet(name):
5
- text = str(DirectedDiffusion)
6
- return "Hello " + name + "!!" + text
7
 
8
  iface = gr.Interface(fn=greet, inputs="text", outputs="text")
9
  iface.launch()
 
1
+
2
  import gradio as gr
3
 
4
  def greet(name):
5
+ return "Hello " + name + "!!"
 
6
 
7
  iface = gr.Interface(fn=greet, inputs="text", outputs="text")
8
  iface.launch()