fruitpicker01 commited on
Commit
7eb6457
·
verified ·
1 Parent(s): f7da65a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +18 -22
app.py CHANGED
@@ -266,8 +266,7 @@ def update_prompts_on_params_change(description, product_name, benefits, key_mes
266
  prompt_1, prompt_2 = generate_display_prompts(description, product_name, benefits, key_message,
267
  chosen_approach, gender, generation, psychotype,
268
  business_stage, industry, opf)
269
- # Очистка полей SMS и комментариев при изменении параметров
270
- return chosen_approach, prompt_1, prompt_2, "", "", "", "", "", ""
271
 
272
  def save_user_request_to_github(selected_product, description, product_name, benefits, key_message, approach, personalization_params):
273
  global current_request_index
@@ -312,7 +311,7 @@ def load_previous_user_request_from_github():
312
  json_files = [file for file in files if file['name'].startswith("user_request_")]
313
  if not json_files:
314
  print("Нет сохраненных запросов.")
315
- return products[0], "", "", "", "", "", None, None, None, None, None, "", "", ""
316
  current_request_index -= 1
317
  if abs(current_request_index) > len(json_files):
318
  current_request_index = -len(json_files)
@@ -333,10 +332,10 @@ def load_previous_user_request_from_github():
333
  return (selected_product, description, product_name, benefits, key_message, approach, *personalization_params)
334
  else:
335
  print(f"Ошибка при загрузке файла: {file_response.status_code}")
336
- return products[0], "", "", "", "", "", None, None, None, None, None, "", "", ""
337
  else:
338
  print(f"Ошибка при обращении к GitHub: {response.status_code}")
339
- return products[0], "", "", "", "", "", None, None, None, None, None, "", "", ""
340
 
341
  def generate_final_prompt_from_display(prompt_text, single_approach, is_prompt_1=True):
342
  prefix = approach_dict[single_approach]["prefix"]
@@ -367,9 +366,18 @@ def generate_personalized_sms_wrapper(selected_product, description, product_nam
367
  save_user_request_to_github(selected_product, description, product_name, benefits, key_message, chosen_approach, personalization_params)
368
  return sms_1, sms_2
369
 
370
- def clear_sms_fields(chosen_approach, p1, p2):
371
- # очистка sms_1, sms_2, comment_sms_1, comment_sms_2, corrected_sms_1, corrected_sms_2
372
- return chosen_approach, p1, p2, "", "", "", "", "", ""
 
 
 
 
 
 
 
 
 
373
 
374
  with gr.Blocks(theme="default") as demo:
375
  gr.Markdown("**Процент созданных SMS по выбранному продукту**")
@@ -416,7 +424,8 @@ with gr.Blocks(theme="default") as demo:
416
  gr.update(value=new_pname, interactive=(selected=="Свой продукт")),
417
  gr.update(value=new_ben, interactive=(selected=="Свой продукт")),
418
  gr.update(value=new_kmsg, interactive=(selected=="Свой продукт")),
419
- chosen_approach_val, p1, p2, "", "", "", "", "", "")
 
420
 
421
  with gr.Column(scale=1):
422
  gr.Markdown("**Клиент**")
@@ -500,19 +509,6 @@ with gr.Blocks(theme="default") as demo:
500
  outputs=[sms_1, sms_2]
501
  )
502
 
503
- def on_load_previous():
504
- loaded_data = load_previous_user_request_from_github()
505
- if not loaded_data or len(loaded_data) < 11:
506
- return (products[0], "", "", "", "", None, None, None, None, None, None, "", "", "", "", "", "")
507
- selected_product_val, description_val, product_name_val, benefits_val, key_message_val, approach_val = loaded_data[0], loaded_data[1], loaded_data[2], loaded_data[3], loaded_data[4], loaded_data[5]
508
- gender_val, generation_val, psychotype_val, business_stage_val, industry_val, opf_val = loaded_data[6:12]
509
- chosen_approach_val, p1, p2 = update_prompts_on_params_change(description_val, product_name_val, benefits_val, key_message_val,
510
- gender_val, generation_val, psychotype_val,
511
- business_stage_val, industry_val, opf_val)
512
- return (selected_product_val, description_val, product_name_val, benefits_val, key_message_val,
513
- gender_val, generation_val, psychotype_val, business_stage_val, industry_val, opf_val,
514
- chosen_approach_val, p1, p2, "", "", "")
515
-
516
  return_params_btn.click(
517
  fn=on_load_previous,
518
  inputs=[],
 
266
  prompt_1, prompt_2 = generate_display_prompts(description, product_name, benefits, key_message,
267
  chosen_approach, gender, generation, psychotype,
268
  business_stage, industry, opf)
269
+ return chosen_approach, prompt_1, prompt_2
 
270
 
271
  def save_user_request_to_github(selected_product, description, product_name, benefits, key_message, approach, personalization_params):
272
  global current_request_index
 
311
  json_files = [file for file in files if file['name'].startswith("user_request_")]
312
  if not json_files:
313
  print("Нет сохраненных запросов.")
314
+ return products[0], "", "", "", "", "", None, None, None, None, None, "", "", "", "", "", ""
315
  current_request_index -= 1
316
  if abs(current_request_index) > len(json_files):
317
  current_request_index = -len(json_files)
 
332
  return (selected_product, description, product_name, benefits, key_message, approach, *personalization_params)
333
  else:
334
  print(f"Ошибка при загрузке файла: {file_response.status_code}")
335
+ return products[0], "", "", "", "", "", None, None, None, None, None, "", "", "", "", "", ""
336
  else:
337
  print(f"Ошибка при обращении к GitHub: {response.status_code}")
338
+ return products[0], "", "", "", "", "", None, None, None, None, None, "", "", "", "", "", ""
339
 
340
  def generate_final_prompt_from_display(prompt_text, single_approach, is_prompt_1=True):
341
  prefix = approach_dict[single_approach]["prefix"]
 
366
  save_user_request_to_github(selected_product, description, product_name, benefits, key_message, chosen_approach, personalization_params)
367
  return sms_1, sms_2
368
 
369
+ def on_load_previous():
370
+ loaded_data = load_previous_user_request_from_github()
371
+ if not loaded_data or len(loaded_data) < 11:
372
+ return (products[0], "", "", "", "", None, None, None, None, None, None, "", "", "", "", "", "")
373
+ selected_product_val, description_val, product_name_val, benefits_val, key_message_val, approach_val = loaded_data[0], loaded_data[1], loaded_data[2], loaded_data[3], loaded_data[4], loaded_data[5]
374
+ gender_val, generation_val, psychotype_val, business_stage_val, industry_val, opf_val = loaded_data[6:12]
375
+ chosen_approach_val, p1, p2 = update_prompts_on_params_change(description_val, product_name_val, benefits_val, key_message_val,
376
+ gender_val, generation_val, psychotype_val,
377
+ business_stage_val, industry_val, opf_val)
378
+ return (selected_product_val, description_val, product_name_val, benefits_val, key_message_val,
379
+ gender_val, generation_val, psychotype_val, business_stage_val, industry_val, opf_val,
380
+ chosen_approach_val, p1, p2, "", "", "")
381
 
382
  with gr.Blocks(theme="default") as demo:
383
  gr.Markdown("**Процент созданных SMS по выбранному продукту**")
 
424
  gr.update(value=new_pname, interactive=(selected=="Свой продукт")),
425
  gr.update(value=new_ben, interactive=(selected=="Свой продукт")),
426
  gr.update(value=new_kmsg, interactive=(selected=="Свой продукт")),
427
+ chosen_approach_val, p1, p2,
428
+ "", "", "", "", "", "")
429
 
430
  with gr.Column(scale=1):
431
  gr.Markdown("**Клиент**")
 
509
  outputs=[sms_1, sms_2]
510
  )
511
 
 
 
 
 
 
 
 
 
 
 
 
 
 
512
  return_params_btn.click(
513
  fn=on_load_previous,
514
  inputs=[],