test-model / app.py
ligaments-dev's picture
Upload app.py with huggingface_hub
e5bc244 verified
raw
history blame contribute delete
114 Bytes
import gradio as gr
def predict(x):
return x
gr.Interface(fn=predict, inputs="text", outputs="text").launch()