fruitpicker01 commited on
Commit
f1b96f9
·
verified ·
1 Parent(s): f0c0344

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +27 -59
app.py CHANGED
@@ -76,7 +76,7 @@ def generate_standard_prompt(description, advantages, *selected_values):
76
  return prompt
77
 
78
  # Функции для генерации сообщений
79
- def generate_message_gpt4o(prompt, temperature=1):
80
  try:
81
  headers = {
82
  "Content-Type": "application/json",
@@ -85,16 +85,14 @@ def generate_message_gpt4o(prompt, temperature=1):
85
  data = {
86
  "model": "chatgpt-4o-latest",
87
  "messages": [{"role": "system", "content": prompt}],
88
- "max_tokens": 101,
89
- "temperature": temperature # Передача температуры
90
  }
91
  response = requests.post("https://api.openai.com/v1/chat/completions", json=data, headers=headers)
92
  response_data = response.json()
93
- return clean_message(response_data["choices"][0]["message"]["content"].strip()) + f" {temperature}"
94
  except Exception as e:
95
  return f"Ошибка при обращении к ChatGPT-4o-Latest: {e}"
96
 
97
-
98
  def clean_message(message):
99
  # Если сообщение не заканчивается на точку или восклицательный знак, обрезаем его до последней точки
100
  if not message.endswith(('.', '!', '?')):
@@ -104,32 +102,29 @@ def clean_message(message):
104
  return message
105
 
106
  # Обновленные функции генерации сообщений с учетом обрезки незаконченных предложений
107
- def generate_message_gigachat_pro(prompt, temperature=0.87):
108
  try:
109
  messages = [SystemMessage(content=prompt)]
110
- chat_pro = GigaChat(credentials=gc_key, model='GigaChat-Pro', max_tokens=68, temperature=temperature, verify_ssl_certs=False)
111
  res = chat_pro(messages)
112
  cleaned_message = clean_message(res.content.strip())
113
  return cleaned_message
114
  except Exception as e:
115
  return f"Ошибка при обращении к GigaChat-Pro: {e}"
116
 
117
- def generate_message_gigachat_lite(prompt, temperature=0.87):
118
  try:
119
  time.sleep(2)
120
  messages = [SystemMessage(content=prompt)]
121
- chat_lite = GigaChat(credentials=gc_key, model='GigaChat', max_tokens=68, temperature=temperature, verify_ssl_certs=False)
122
  res = chat_lite(messages)
123
  cleaned_message = clean_message(res.content.strip())
124
  return cleaned_message
125
  except Exception as e:
126
  return f"Ошибка при обращении к GigaChat-Lite: {e}"
127
 
128
- def generate_message_gigachat_plus(prompt, temperature=0.87):
129
  try:
130
  time.sleep(2)
131
  messages = [SystemMessage(content=prompt)]
132
- chat_plus = GigaChat(credentials=gc_key, model='GigaChat-Plus', max_tokens=68, temperature=temperature, verify_ssl_certs=False)
133
  res = chat_plus(messages)
134
  cleaned_message = clean_message(res.content.strip())
135
  return cleaned_message
@@ -351,11 +346,10 @@ def check_errors_with_yield(*personalized_messages):
351
  yield error_check_prompt, error_message_gpt4o, error_message_gigachat_pro, error_message_gigachat_lite, error_message_gigachat_plus, "Все результаты проверки сгенерированы"
352
 
353
 
354
- def save_to_github(personalized_message, model_name, comment, corrected_message, description, advantages, non_personalized_prompt, non_personalized_message, gender, generation, psychotype, business_stage, industry, legal_form, temperature):
355
  # Собираем все данные в один словарь
356
  data_to_save = {
357
  "Модель": model_name,
358
- "Температура": temperature, # Добавляем температуру
359
  "Персонализированное сообщение": personalized_message,
360
  "Комментарий": comment,
361
  "Откорректированное сообщение": corrected_message,
@@ -390,23 +384,11 @@ def save_to_github(personalized_message, model_name, comment, corrected_message,
390
  # Отправка POST-запроса на GitHub API для создания файла в репозитории
391
  response = requests.put(url, headers=headers, data=json.dumps(data))
392
 
393
- if response.status_code == 201:
394
- print("Файл успешно загружен на GitHub.")
395
- else:
396
- print(f"Ошибка при загрузке файла на GitHub: {response.status_code}")
397
- print(f"Ответ сервера: {response.json()}")
398
-
399
 
400
  # Создание интерфейса Gradio
401
  with gr.Blocks() as demo:
402
  gr.Markdown("# Генерация SMS-сообщений по заданным признакам")
403
 
404
- # Добавление элементов управления температурой для каждой модели
405
- gpt4o_temperature = gr.Slider(label="GPT-4o: temperature", minimum=0, maximum=2, step=0.01, value=1)
406
- gigachat_pro_temperature = gr.Slider(label="GigaChat-Pro: temperature", minimum=0, maximum=2, step=0.01, value=0.87)
407
- gigachat_lite_temperature = gr.Slider(label="GigaChat-Lite: temperature", minimum=0, maximum=2, step=0.01, value=0.87)
408
- gigachat_plus_temperature = gr.Slider(label="GigaChat-Plus: temperature", minimum=0, maximum=2, step=0.01, value=0.87)
409
-
410
  with gr.Row():
411
  with gr.Column(scale=1):
412
  description_input = gr.Textbox(
@@ -446,20 +428,11 @@ with gr.Blocks() as demo:
446
  output_text_gigachat_lite = gr.Textbox(label="Неперсонализированное сообщение GigaChat-Lite", lines=3, interactive=False)
447
  output_text_gigachat_plus = gr.Textbox(label="Неперсонализированное сообщение GigaChat-Lite+", lines=3, interactive=False)
448
 
449
- submit_btn.click(
450
- generate_messages,
451
- inputs=[
452
- description_input,
453
- advantages_input,
454
- *selections,
455
- gpt4o_temperature,
456
- gigachat_pro_temperature,
457
- gigachat_lite_temperature,
458
- gigachat_plus_temperature
459
- ],
460
- outputs=[prompt_display, output_text_gpt4o, output_text_gigachat_pro, output_text_gigachat_lite, output_text_gigachat_plus]
461
- )
462
-
463
 
464
  with gr.Row():
465
  personalize_btn = gr.Button("2. Выполнить персонализацию (нажимать только после кнопки 1)", elem_id="personalize_button")
@@ -502,8 +475,8 @@ with gr.Blocks() as demo:
502
 
503
  # Привязка кнопок к функциям сохранения
504
  save_gpt4o_btn.click(
505
- fn=lambda personalized_message, comment, corrected_message, description, advantages, non_personalized_prompt, non_personalized_message, gender, generation, psychotype, business_stage, industry, legal_form, temperature:
506
- save_to_github(personalized_message, "GPT-4o", comment, corrected_message, description, advantages, non_personalized_prompt, non_personalized_message, gender, generation, psychotype, business_stage, industry, legal_form, temperature),
507
  inputs=[
508
  personalized_output_text_gpt4o,
509
  comment_gpt4o,
@@ -517,15 +490,14 @@ with gr.Blocks() as demo:
517
  selections[2], # Психотип
518
  selections[3], # Стадия бизнеса
519
  selections[4], # Отрасль
520
- selections[5], # ОПФ
521
- gpt4o_temperature # Передача температуры
522
  ],
523
  outputs=None
524
  )
525
-
526
  save_gigachat_pro_btn.click(
527
- fn=lambda personalized_message, comment, corrected_message, description, advantages, non_personalized_prompt, non_personalized_message, gender, generation, psychotype, business_stage, industry, legal_form, temperature:
528
- save_to_github(personalized_message, "GigaChat-Pro", comment, corrected_message, description, advantages, non_personalized_prompt, non_personalized_message, gender, generation, psychotype, business_stage, industry, legal_form, temperature),
529
  inputs=[
530
  personalized_output_text_gigachat_pro,
531
  comment_gigachat_pro,
@@ -539,15 +511,14 @@ with gr.Blocks() as demo:
539
  selections[2], # Психотип
540
  selections[3], # Стадия бизнеса
541
  selections[4], # Отрасль
542
- selections[5], # ОПФ
543
- gigachat_pro_temperature # Передача температуры
544
  ],
545
  outputs=None
546
  )
547
-
548
  save_gigachat_lite_btn.click(
549
- fn=lambda personalized_message, comment, corrected_message, description, advantages, non_personalized_prompt, non_personalized_message, gender, generation, psychotype, business_stage, industry, legal_form, temperature:
550
- save_to_github(personalized_message, "GigaChat-Lite", comment, corrected_message, description, advantages, non_personalized_prompt, non_personalized_message, gender, generation, psychotype, business_stage, industry, legal_form, temperature),
551
  inputs=[
552
  personalized_output_text_gigachat_lite,
553
  comment_gigachat_lite,
@@ -561,15 +532,14 @@ with gr.Blocks() as demo:
561
  selections[2], # Психотип
562
  selections[3], # Стадия бизнеса
563
  selections[4], # Отрасль
564
- selections[5], # ОПФ
565
- gigachat_lite_temperature # Передача температуры
566
  ],
567
  outputs=None
568
  )
569
-
570
  save_gigachat_plus_btn.click(
571
- fn=lambda personalized_message, comment, corrected_message, description, advantages, non_personalized_prompt, non_personalized_message, gender, generation, psychotype, business_stage, industry, legal_form, temperature:
572
- save_to_github(personalized_message, "GigaChat-Plus", comment, corrected_message, description, advantages, non_personalized_prompt, non_personalized_message, gender, generation, psychotype, business_stage, industry, legal_form, temperature),
573
  inputs=[
574
  personalized_output_text_gigachat_plus,
575
  comment_gigachat_plus,
@@ -583,13 +553,11 @@ with gr.Blocks() as demo:
583
  selections[2], # Психотип
584
  selections[3], # Стадия бизнеса
585
  selections[4], # Отрасль
586
- selections[5], # ОПФ
587
- gigachat_plus_temperature # Передача температуры
588
  ],
589
  outputs=None
590
  )
591
 
592
-
593
  # Использование сохраненных переменных в следующем блоке
594
  with gr.Row():
595
  check_errors_btn = gr.Button("3. Проверить текст (нажимать только после кнопки 2) - экспериментальная фича, качество пока крайне низкое", elem_id="check_errors_button")
 
76
  return prompt
77
 
78
  # Функции для генерации сообщений
79
+ def generate_message_gpt4o(prompt):
80
  try:
81
  headers = {
82
  "Content-Type": "application/json",
 
85
  data = {
86
  "model": "chatgpt-4o-latest",
87
  "messages": [{"role": "system", "content": prompt}],
88
+ "max_tokens": 101
 
89
  }
90
  response = requests.post("https://api.openai.com/v1/chat/completions", json=data, headers=headers)
91
  response_data = response.json()
92
+ return response_data["choices"][0]["message"]["content"].strip()
93
  except Exception as e:
94
  return f"Ошибка при обращении к ChatGPT-4o-Latest: {e}"
95
 
 
96
  def clean_message(message):
97
  # Если сообщение не заканчивается на точку или восклицательный знак, обрезаем его до последней точки
98
  if not message.endswith(('.', '!', '?')):
 
102
  return message
103
 
104
  # Обновленные функции генерации сообщений с учетом обрезки незаконченных предложений
105
+ def generate_message_gigachat_pro(prompt):
106
  try:
107
  messages = [SystemMessage(content=prompt)]
 
108
  res = chat_pro(messages)
109
  cleaned_message = clean_message(res.content.strip())
110
  return cleaned_message
111
  except Exception as e:
112
  return f"Ошибка при обращении к GigaChat-Pro: {e}"
113
 
114
+ def generate_message_gigachat_lite(prompt):
115
  try:
116
  time.sleep(2)
117
  messages = [SystemMessage(content=prompt)]
 
118
  res = chat_lite(messages)
119
  cleaned_message = clean_message(res.content.strip())
120
  return cleaned_message
121
  except Exception as e:
122
  return f"Ошибка при обращении к GigaChat-Lite: {e}"
123
 
124
+ def generate_message_gigachat_plus(prompt):
125
  try:
126
  time.sleep(2)
127
  messages = [SystemMessage(content=prompt)]
 
128
  res = chat_plus(messages)
129
  cleaned_message = clean_message(res.content.strip())
130
  return cleaned_message
 
346
  yield error_check_prompt, error_message_gpt4o, error_message_gigachat_pro, error_message_gigachat_lite, error_message_gigachat_plus, "Все результаты проверки сгенерированы"
347
 
348
 
349
+ def save_to_github(personalized_message, model_name, comment, corrected_message, description, advantages, non_personalized_prompt, non_personalized_message, gender, generation, psychotype, business_stage, industry, legal_form):
350
  # Собираем все данные в один словарь
351
  data_to_save = {
352
  "Модель": model_name,
 
353
  "Персонализированное сообщение": personalized_message,
354
  "Комментарий": comment,
355
  "Откорректированное сообщение": corrected_message,
 
384
  # Отправка POST-запроса на GitHub API для создания файла в репозитории
385
  response = requests.put(url, headers=headers, data=json.dumps(data))
386
 
 
 
 
 
 
 
387
 
388
  # Создание интерфейса Gradio
389
  with gr.Blocks() as demo:
390
  gr.Markdown("# Генерация SMS-сообщений по заданным признакам")
391
 
 
 
 
 
 
 
392
  with gr.Row():
393
  with gr.Column(scale=1):
394
  description_input = gr.Textbox(
 
428
  output_text_gigachat_lite = gr.Textbox(label="Неперсонализированное сообщение GigaChat-Lite", lines=3, interactive=False)
429
  output_text_gigachat_plus = gr.Textbox(label="Неперсонализированное сообщение GigaChat-Lite+", lines=3, interactive=False)
430
 
431
+ submit_btn.click(
432
+ generate_messages,
433
+ inputs=[description_input, advantages_input] + selections,
434
+ outputs=[prompt_display, output_text_gpt4o, output_text_gigachat_pro, output_text_gigachat_lite, output_text_gigachat_plus]
435
+ )
 
 
 
 
 
 
 
 
 
436
 
437
  with gr.Row():
438
  personalize_btn = gr.Button("2. Выполнить персонализацию (нажимать только после кнопки 1)", elem_id="personalize_button")
 
475
 
476
  # Привязка кнопок к функциям сохранения
477
  save_gpt4o_btn.click(
478
+ fn=lambda personalized_message, comment, corrected_message, description, advantages, non_personalized_prompt, non_personalized_message, gender, generation, psychotype, business_stage, industry, legal_form:
479
+ save_to_github(personalized_message, "GPT-4o", comment, corrected_message, description, advantages, non_personalized_prompt, non_personalized_message, gender, generation, psychotype, business_stage, industry, legal_form),
480
  inputs=[
481
  personalized_output_text_gpt4o,
482
  comment_gpt4o,
 
490
  selections[2], # Психотип
491
  selections[3], # Стадия бизнеса
492
  selections[4], # Отрасль
493
+ selections[5] # ОПФ
 
494
  ],
495
  outputs=None
496
  )
497
+
498
  save_gigachat_pro_btn.click(
499
+ fn=lambda personalized_message, comment, corrected_message, description, advantages, non_personalized_prompt, non_personalized_message, gender, generation, psychotype, business_stage, industry, legal_form:
500
+ save_to_github(personalized_message, "GigaChat-Pro", comment, corrected_message, description, advantages, non_personalized_prompt, non_personalized_message, gender, generation, psychotype, business_stage, industry, legal_form),
501
  inputs=[
502
  personalized_output_text_gigachat_pro,
503
  comment_gigachat_pro,
 
511
  selections[2], # Психотип
512
  selections[3], # Стадия бизнеса
513
  selections[4], # Отрасль
514
+ selections[5] # ОПФ
 
515
  ],
516
  outputs=None
517
  )
518
+
519
  save_gigachat_lite_btn.click(
520
+ fn=lambda personalized_message, comment, corrected_message, description, advantages, non_personalized_prompt, non_personalized_message, gender, generation, psychotype, business_stage, industry, legal_form:
521
+ save_to_github(personalized_message, "GigaChat-Lite", comment, corrected_message, description, advantages, non_personalized_prompt, non_personalized_message, gender, generation, psychotype, business_stage, industry, legal_form),
522
  inputs=[
523
  personalized_output_text_gigachat_lite,
524
  comment_gigachat_lite,
 
532
  selections[2], # Психотип
533
  selections[3], # Стадия бизнеса
534
  selections[4], # Отрасль
535
+ selections[5] # ОПФ
 
536
  ],
537
  outputs=None
538
  )
539
+
540
  save_gigachat_plus_btn.click(
541
+ fn=lambda personalized_message, comment, corrected_message, description, advantages, non_personalized_prompt, non_personalized_message, gender, generation, psychotype, business_stage, industry, legal_form:
542
+ save_to_github(personalized_message, "GigaChat-Lite+", comment, corrected_message, description, advantages, non_personalized_prompt, non_personalized_message, gender, generation, psychotype, business_stage, industry, legal_form),
543
  inputs=[
544
  personalized_output_text_gigachat_plus,
545
  comment_gigachat_plus,
 
553
  selections[2], # Психотип
554
  selections[3], # Стадия бизнеса
555
  selections[4], # Отрасль
556
+ selections[5] # ОПФ
 
557
  ],
558
  outputs=None
559
  )
560
 
 
561
  # Использование сохраненных переменных в следующем блоке
562
  with gr.Row():
563
  check_errors_btn = gr.Button("3. Проверить текст (нажимать только после кнопки 2) - экспериментальная фича, качество пока крайне низкое", elem_id="check_errors_button")