gradioTest1 / app.py
jaumaras's picture
Rename App.py to app.py
768d2b7
raw
history blame
193 Bytes
! pip install gradio
import gradio as gr
def hello_world(name):
return "HEllo..." + name +"!!!!"
interface = gr.Interface(fn = hello_world, inputs='text',outputs="text")
interface.launch()