File size: 180 Bytes
61e7d1d
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
# app.py
import gradio as gr

def hello_world():
    return "Hello World! Welcome to the AI world!"

iface = gr.Interface(fn=hello_world, inputs=[], outputs="text")
iface.launch()