Rooni commited on
Commit
1063ed3
·
1 Parent(s): 98b1ed3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -59,7 +59,8 @@ with gr.Blocks(css=css) as vui:
59
  with gr.Column():
60
  text_button = gr.Button("Генерация", variant='primary', elem_id="generate")
61
  with gr.Column(scale=2):
62
- text_output = gr.Markdown(show_label=False, value="**Здравствуйте!** Чем я могу Вам помочь сегодня?")
 
63
 
64
  text_button.click(generate, inputs=[promt, model, max_tokens], outputs=text_output)
65
 
 
59
  with gr.Column():
60
  text_button = gr.Button("Генерация", variant='primary', elem_id="generate")
61
  with gr.Column(scale=2):
62
+ with gr.Tab("Ответ")
63
+ text_output = gr.Markdown(show_label=False, value="**Здравствуйте!** Чем я могу Вам помочь сегодня?")
64
 
65
  text_button.click(generate, inputs=[promt, model, max_tokens], outputs=text_output)
66