File size: 414 Bytes
e8e247e
081b46f
6f1af31
 
 
 
 
19b9274
 
ef32709
 
 
 
 
8fc7661
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import gradio as gr

def greet(name):
    return "Hello " + name + "!"

demo = gr.Interface(fn=greet, inputs="text", outputs="text")

with gr.Blocks() as demo:
    with gr.Row():
        btn0 = gr.Button("ChatGPT", scale=1)
        btn1 = gr.Button("LLaMA", scale=1)
        btn2 = gr.Button("Vicuna", scale=1)
        btn3 = gr.Button("Alpaca", scale=1)
        btn4 = gr.Button("Flan-T5", scale=1)

demo.launch()