Update app.py
Browse files
app.py
CHANGED
@@ -1,7 +1,6 @@
|
|
1 |
import gradio as gr
|
2 |
import diff
|
3 |
|
4 |
-
dif = diff.send_it()
|
5 |
|
6 |
|
7 |
sky = "https://huggingface.co/spaces/Omnibus/game-test/resolve/main/assets/sky.png"
|
@@ -23,7 +22,7 @@ html_mod=f"""
|
|
23 |
</div>"""
|
24 |
|
25 |
def dif_fn(inp):
|
26 |
-
output=dif(inp)
|
27 |
return output[0]
|
28 |
|
29 |
|
|
|
1 |
import gradio as gr
|
2 |
import diff
|
3 |
|
|
|
4 |
|
5 |
|
6 |
sky = "https://huggingface.co/spaces/Omnibus/game-test/resolve/main/assets/sky.png"
|
|
|
22 |
</div>"""
|
23 |
|
24 |
def dif_fn(inp):
|
25 |
+
output=dif.send_it(inp,5,1)
|
26 |
return output[0]
|
27 |
|
28 |
|