File size: 195 Bytes
17ddfc9
dbfecad
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
##! 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()