e5bc244
1
2
3
4
5
import gradio as gr def predict(x): return x gr.Interface(fn=predict, inputs="text", outputs="text").launch()