derek-thomas's picture
derek-thomas HF staff
Typo
60b112e
raw
history blame contribute delete
No virus
323 Bytes
import gradio as gr
def update(name):
return f"Welcome to Gradio, {name}!"
intro_md = """
# Introduction
This space exists 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()