Silly98 commited on
Commit
91d8486
·
verified ·
1 Parent(s): 522a3d7

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ def app(var:str):
4
+ result= f'Hi i am very <strong>strong</strong> it very {var}'
5
+ return result
6
+
7
+ interface = gr.Interface(fn=app,inputs='text',outputs='text')
8
+ interface.launch(share=True)