File size: 323 Bytes
9b83b7b 02771df 60b112e 02771df 9b83b7b 02771df 9b83b7b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
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()
|