gradioTest1 / app.py
jaumaras's picture
Update app.py
12c24cd
raw
history blame
279 Bytes
##! pip install gradio
pip install gradio_client
import gradio as gr
def hello_world(name):
return "HEllo..." + name +"!!!!"
def hello_world2(name):
return "HEllo..." + name +"!!!!"
interface = gr.Interface(fn = hello_world, inputs='text',outputs="text")
interface.launch()