aisa / app.py
sistudent-at-300100160591
Add Gradio app.py and dependencies for deployment
222ab1e
raw
history blame
160 Bytes
import gradio as gr
def greet(name):
return f"Hello, {name} ! Welcome to AISA"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()