derek-thomas HF staff commited on
Commit
02771df
1 Parent(s): c6296fc

Adding basic markdown

Browse files
Files changed (1) hide show
  1. app.py +7 -1
app.py CHANGED
@@ -5,7 +5,13 @@ def update(name):
5
  return f"Welcome to Gradio, {name}!"
6
 
7
 
 
 
 
 
 
 
8
  with gr.Blocks() as demo:
9
- gr.Markdown("")
10
 
11
  demo.launch()
 
5
  return f"Welcome to Gradio, {name}!"
6
 
7
 
8
+ intro_md = """
9
+ # Introduction
10
+ This space is to allow you to benchmark [TGI](https://github.com/huggingface/text-generation-inference) by using dev mode on spaces.
11
+ """
12
+
13
+
14
  with gr.Blocks() as demo:
15
+ gr.Markdown(intro_md)
16
 
17
  demo.launch()