Omnibus commited on
Commit
2671156
1 Parent(s): bec3144

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -67,9 +67,9 @@ with gr.Blocks() as app:
67
  btn = gr.Button()
68
 
69
  with gr.Column():
70
- outp0 = gr.Textbox()
71
- outp1 = gr.Textbox()
72
- outp2 = gr.Textbox()
73
  btn.click(aiornot0,[inp],outp0)
74
  btn.click(aiornot1,[inp],outp1)
75
  btn.click(aiornot2,[inp],outp2)
 
67
  btn = gr.Button()
68
 
69
  with gr.Column():
70
+ outp0 = gr.Textbox(label=f'{models[0]}')
71
+ outp1 = gr.Textbox(label=f'{models[1]}')
72
+ outp2 = gr.Textbox(label=f'{models[2]}')
73
  btn.click(aiornot0,[inp],outp0)
74
  btn.click(aiornot1,[inp],outp1)
75
  btn.click(aiornot2,[inp],outp2)