README / README.md
jericodings's picture
Update README.md
0af26c6 verified

A newer version of the Gradio SDK is available: 6.9.0

Upgrade
metadata
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()