File size: 240 Bytes
251d658
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
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()