hwp-agent / app.py
ginipick's picture
Create app.py
fb2486e verified
raw
history blame
149 Bytes
import gradio as gr
demo = gr.Interface(
fn=lambda: "Hello World",
inputs=None,
outputs="text",
title="Hello World"
)
demo.launch()