HWProgramDEMO / app.py
SuriRaja's picture
Create app.py
61e7d1d verified
Raw
History Blame Contribute Delete
180 Bytes
# 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()