fruitpicker01 commited on
Commit
2558d29
·
verified ·
1 Parent(s): 57841dc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.py CHANGED
@@ -49,9 +49,15 @@ for sheet_name, df in data.items():
49
  print(f"Ошибка при обработке данных листа {sheet_name}: {e}")
50
  features[sheet_name] = {}
51
 
 
52
  current_request_index = -1 # Изначально указывает на последний запрос
53
 
 
54
  def save_user_request_to_github(description, advantages, personalization_params):
 
 
 
 
55
  # Собираем все данные в один словарь
56
  data_to_save = {
57
  "description": description,
 
49
  print(f"Ошибка при обработке данных листа {sheet_name}: {e}")
50
  features[sheet_name] = {}
51
 
52
+
53
  current_request_index = -1 # Изначально указывает на последний запрос
54
 
55
+
56
  def save_user_request_to_github(description, advantages, personalization_params):
57
+
58
+ global current_request_index # Используем глобальную переменную
59
+ current_request_index = -1 # Сбрасываем позицию к последнему запросу
60
+
61
  # Собираем все данные в один словарь
62
  data_to_save = {
63
  "description": description,