research14 commited on
Commit
b3f873e
·
1 Parent(s): 7b8870b

Making buttons

Browse files
Files changed (1) hide show
  1. app.py +7 -0
app.py CHANGED
@@ -15,4 +15,11 @@ iface = gr.Interface(
15
  theme=theme
16
  )
17
 
 
 
 
 
 
 
 
18
  iface.launch()
 
15
  theme=theme
16
  )
17
 
18
+ with gr.Row():
19
+ chatgot_btn = gr.Button("ChatGPT")
20
+ llama_btn = gr.Button("LLaMA")
21
+ vicuna_btn = gr.Button("Vicuna")
22
+ alpaca_btn = gr.Button("Alpaca")
23
+ flant5_btn = gr.Button("Flan-T5")
24
+
25
  iface.launch()