ai-card-hub / app.py
GotThatData's picture
Add application file and dependencies
bcde0da
raw
history blame
199 Bytes
import gradio as gr
# Simple card greeting function
def greet(name):
return "Hello " + name + "!!"
# Gradio Interface
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()