File size: 387 Bytes
06119c0
 
 
 
 
 
 
0af26c6
06119c0
 
 
0af26c6
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
---
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()