Rooni commited on
Commit
31fd49d
·
1 Parent(s): c7ba344

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -33,5 +33,5 @@ def generate_minecraft_command(description):
33
 
34
  iface = gr.Interface(fn=generate_minecraft_command, inputs=[
35
  gr.Textbox(label="Запрос")
36
- ], outputs=gr.Textbox(label="Ответ", markup=True), title="GPT") # Указываем markup=True
37
  iface.launch()
 
33
 
34
  iface = gr.Interface(fn=generate_minecraft_command, inputs=[
35
  gr.Textbox(label="Запрос")
36
+ ], outputs=gr.HTML(label="Ответ"), title="GPT") # Используем gr.HTML вместо gr.Textbox
37
  iface.launch()