README / README.md
jericodings's picture
Update README.md
0af26c6 verified
---
title: README
emoji: ๐Ÿ“Š
colorFrom: blue
colorTo: gray
sdk: gradio
pinned: false
sdk_version: 5.29.0
---
Edit this `README.md` markdown file to author your organization card.
git clone https://huggingface.co/spaces/Drafters/README
import gradio as gr
def greet(name):
return "Hello " + name + "!!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()