derek-thomas
Adding basic markdown
02771df
raw
history blame
319 Bytes
import gradio as gr
def update(name):
return f"Welcome to Gradio, {name}!"
intro_md = """
# Introduction
This space is to allow you to benchmark [TGI](https://github.com/huggingface/text-generation-inference) by using dev mode on spaces.
"""
with gr.Blocks() as demo:
gr.Markdown(intro_md)
demo.launch()