Spaces:
Sleeping
Sleeping
| import gradio as gr | |
| def test_fn(text): | |
| return "Eingabe war: " + text | |
| gr.Interface(fn=test_fn, | |
| inputs=gr.Textbox(label="Text"), | |
| outputs=gr.Textbox(label="Ausgabe"), | |
| title="Minimal Test").launch() | |