8cc1f9a 7514661 94082cb b1ce122
1
2
3
4
5
6
7
import gradio as gr def model(params): return "hello world" app = gr.Interface(fn=model, inputs="textbox", outputs="textbox") app.launch()