bark_project / app.py
DataKatie's picture
Upload 3 files
251d658 verified
raw
history blame contribute delete
240 Bytes
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()