test / app.py
PlaceReporter99's picture
Create app.py
a73b730
raw
history blame
124 Bytes
import gradio as gr
import random
gr.Interface(fn=lambda x:''.join(random.sample(x, len(x))), inputs="text", outputs="text")