prototypeone / .ipynb_checkpoints /app-checkpoint.py
Nifdi Guliyev
Added the model and changed the interface
243bd23
raw
history blame
160 Bytes
import gradio as gr
def greet(name):
return "Sike " + name + " you thought!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()