File size: 274 Bytes
17ddfc9
876c090
dbfecad
 
 
 
f9160b2
 
dbfecad
 
9c6aac2
1
2
3
4
5
6
7
8
9
10
11
##! pip install gradio
import 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()