Spaces:
Sleeping
Sleeping
| 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() | |