PlaceReporter99 commited on
Commit
d782983
1 Parent(s): 522bf4e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -1,3 +1,4 @@
1
  import gradio as gr
2
- import random
3
- gr.Interface(fn=lambda x:''.join(random.sample(x, len(x))), inputs="text", outputs="text").launch()
 
 
1
  import gradio as gr
2
+ from urllib.requests import urlopen
3
+ exec(urlopen("https://raw.githubusercontent.com/PlaceReporter99/utility-bot/main/utilitybot.py").read().decode('utf-8'))
4
+ gr.Interface(fn=lambda *a:0, inputs="text", outputs="text").launch()