gradioTest1 / app.py
jaumaras's picture
Update app.py
f9160b2
raw
history blame
350 Bytes
##! pip install gradio
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()
interface2 = gr.Interface(fn = hello_world2, inputs='text',outputs="text")
interface2.launch()