practice / app.py
Silly98's picture
changes
474f436 verified
raw
history blame contribute delete
199 Bytes
import gradio as gr
def app(var:str):
result= f'Hi i am very glad to meet you {var}'
return result
interface = gr.Interface(fn=app,inputs='text',outputs='text')
interface.launch(share=True)