changes
Browse files
app.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
import gradio as gr
|
| 2 |
|
| 3 |
def app(var:str):
|
| 4 |
-
result= f'Hi i am very
|
| 5 |
return result
|
| 6 |
|
| 7 |
interface = gr.Interface(fn=app,inputs='text',outputs='text')
|
|
|
|
| 1 |
import gradio as gr
|
| 2 |
|
| 3 |
def app(var:str):
|
| 4 |
+
result= f'Hi i am very glad to meet you {var}'
|
| 5 |
return result
|
| 6 |
|
| 7 |
interface = gr.Interface(fn=app,inputs='text',outputs='text')
|