fruitpicker01 commited on
Commit
d62d394
·
verified ·
1 Parent(s): 0747fb0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -3
app.py CHANGED
@@ -122,8 +122,10 @@ def download_current_message_database():
122
  output = io.BytesIO()
123
  df.to_excel(output, index=False)
124
  output.seek(0) # Reset pointer
125
- # Return as a tuple with the filename
126
- return ('messages.xlsx', output)
 
 
127
  else:
128
  return None
129
 
@@ -1852,7 +1854,7 @@ with gr.Blocks() as demo:
1852
 
1853
  with gr.Row():
1854
  download_btn = gr.Button("Выгрузить актуальную базу сообщений")
1855
- download_file = gr.File(label="Скачать базу сообщений")
1856
 
1857
  # Очистка всех полей кроме prompt_display
1858
  description_input.change(
 
122
  output = io.BytesIO()
123
  df.to_excel(output, index=False)
124
  output.seek(0) # Reset pointer
125
+ # Set the name attribute so Gradio knows the filename
126
+ output.name = 'messages.xlsx'
127
+ # Return the output directly
128
+ return output
129
  else:
130
  return None
131
 
 
1854
 
1855
  with gr.Row():
1856
  download_btn = gr.Button("Выгрузить актуальную базу сообщений")
1857
+ download_file = gr.File(label="Скачать базу сообщений", interactive=False)
1858
 
1859
  # Очистка всех полей кроме prompt_display
1860
  description_input.change(