Create app.py
Browse files
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)
|