31f63f0 52cf49a 31f63f0 5f89a9f
1
2
3
4
5
6
7
8
9
10
11
import gradio as gr def test(input_text): return f"Your text was: {input_text}" demo = gr.Interface(fn=test, inputs="text", outputs="text") if __name__ == "__main__": demo.launch()