eljanmahammadli commited on
Commit
439d01d
·
1 Parent(s): 59fbf6a

added history for generated text

Browse files
Files changed (1) hide show
  1. app.py +59 -45
app.py CHANGED
@@ -6,7 +6,7 @@ import re
6
  import requests
7
  from typing import Dict
8
  from collections import defaultdict
9
- from datetime import date
10
  import gradio as gr
11
  from scipy.special import softmax
12
  import language_tool_python
@@ -373,6 +373,13 @@ def generate_article(
373
  return clean_text(article)
374
 
375
 
 
 
 
 
 
 
 
376
  def humanize(
377
  text: str,
378
  model: str,
@@ -392,7 +399,11 @@ def humanize(
392
  length_penalty=length_penalty,
393
  )
394
  result = result + references
395
- return format_and_correct_language_check(result)
 
 
 
 
396
 
397
 
398
  def update_visibility_api(model: str):
@@ -482,7 +493,10 @@ def generate_and_format(
482
  for url in url_content.keys():
483
  article += f"\n{url}"
484
 
485
- return format_references(article)
 
 
 
486
 
487
 
488
  def create_interface():
@@ -681,26 +695,26 @@ def create_interface():
681
 
682
  gr.Markdown("# Add Optional PDF Files with Information", elem_classes="text-center text-3xl mb-6")
683
  pdf_file_input = gr.File(label="Upload PDF(s)", file_count="multiple", file_types=[".pdf"])
684
-
685
  # NOTE: HIDE AI MODEL SELECTION
686
- # with gr.Group():
687
- # gr.Markdown("## AI Model Configuration", elem_classes="text-xl mb-4")
688
- # ai_generator = gr.Dropdown(
689
- # choices=[
690
- # "OpenAI GPT 4",
691
- # "OpenAI GPT 4o",
692
- # "OpenAI GPT 4o Mini",
693
- # "Claude Sonnet 3.5",
694
- # "Gemini 1.5 Pro",
695
- # "LLaMA 3",
696
- # ],
697
- # value="OpenAI GPT 4o Mini",
698
- # label="AI Model",
699
- # elem_classes="input-highlight-pink",
700
- # )
701
- # input_api = gr.Textbox(label="API Key", visible=False)
702
- # ai_generator.change(update_visibility_api, ai_generator, input_api)
703
-
704
  generate_btn = gr.Button("Generate Article", variant="primary")
705
 
706
  with gr.Accordion("Advanced Humanizer Settings", open=False):
@@ -728,23 +742,29 @@ def create_interface():
728
  )
729
 
730
  with gr.Column(scale=3):
731
- output_article = gr.Textbox(label="Generated Article", lines=20)
732
- ai_comments = gr.Textbox(
733
- label="Add comments to help edit generated text", interactive=True, visible=False
734
- )
735
- regenerate_btn = gr.Button("Regenerate Article", variant="primary", visible=False)
736
- ai_detector_dropdown = gr.Radio(
737
- choices=ai_check_options, label="Select AI Detector", value="Polygraf AI"
738
- )
739
- ai_check_btn = gr.Button("AI Check")
740
-
741
- with gr.Accordion("AI Detection Results", open=True):
742
- ai_check_result = gr.Label(label="AI Check Result")
743
- highlighted_text = gr.HTML(label="Sentence Breakdown", visible=False)
744
- humanize_btn = gr.Button("Humanize")
745
- # humanized_output = gr.Textbox(label="Humanized Article", lines=20, elem_classes=["custom-textbox"])
746
- humanized_output = gr.Markdown(label="Humanized Article", value="\n\n\n\n", render=True)
747
- copy_to_input_btn = gr.Button("Copy to Input for AI Check")
 
 
 
 
 
 
748
 
749
  def regenerate_visible(text):
750
  if text:
@@ -856,12 +876,6 @@ def create_interface():
856
  top_k_slider,
857
  length_penalty_slider,
858
  ],
859
- outputs=[humanized_output],
860
- )
861
-
862
- copy_to_input_btn.click(
863
- fn=copy_to_input,
864
- inputs=[humanized_output],
865
  outputs=[output_article],
866
  )
867
 
 
6
  import requests
7
  from typing import Dict
8
  from collections import defaultdict
9
+ from datetime import date, datetime
10
  import gradio as gr
11
  from scipy.special import softmax
12
  import language_tool_python
 
373
  return clean_text(article)
374
 
375
 
376
+ history = []
377
+
378
+
379
+ def get_history():
380
+ return history
381
+
382
+
383
  def humanize(
384
  text: str,
385
  model: str,
 
399
  length_penalty=length_penalty,
400
  )
401
  result = result + references
402
+ corrected_text = format_and_correct_language_check(result)
403
+
404
+ timestamp = datetime.now().strftime("%Y-%m-%d %H:%M:%S")
405
+ history.append((f"Humanized Text | {timestamp}\nInput: {model}", corrected_text))
406
+ return corrected_text
407
 
408
 
409
  def update_visibility_api(model: str):
 
493
  for url in url_content.keys():
494
  article += f"\n{url}"
495
 
496
+ reference_formatted = format_references(article)
497
+ timestamp = datetime.now().strftime("%Y-%m-%d %H:%M:%S")
498
+ history.append((f"Generated Text | {timestamp}\nInput: {topic}", reference_formatted))
499
+ return reference_formatted
500
 
501
 
502
  def create_interface():
 
695
 
696
  gr.Markdown("# Add Optional PDF Files with Information", elem_classes="text-center text-3xl mb-6")
697
  pdf_file_input = gr.File(label="Upload PDF(s)", file_count="multiple", file_types=[".pdf"])
698
+ """
699
  # NOTE: HIDE AI MODEL SELECTION
700
+ with gr.Group():
701
+ gr.Markdown("## AI Model Configuration", elem_classes="text-xl mb-4")
702
+ ai_generator = gr.Dropdown(
703
+ choices=[
704
+ "OpenAI GPT 4",
705
+ "OpenAI GPT 4o",
706
+ "OpenAI GPT 4o Mini",
707
+ "Claude Sonnet 3.5",
708
+ "Gemini 1.5 Pro",
709
+ "LLaMA 3",
710
+ ],
711
+ value="OpenAI GPT 4o Mini",
712
+ label="AI Model",
713
+ elem_classes="input-highlight-pink",
714
+ )
715
+ input_api = gr.Textbox(label="API Key", visible=False)
716
+ ai_generator.change(update_visibility_api, ai_generator, input_api)
717
+ """
718
  generate_btn = gr.Button("Generate Article", variant="primary")
719
 
720
  with gr.Accordion("Advanced Humanizer Settings", open=False):
 
742
  )
743
 
744
  with gr.Column(scale=3):
745
+ with gr.Tab("Text Generator"):
746
+ output_article = gr.Textbox(label="Generated Article", lines=20)
747
+ ai_comments = gr.Textbox(
748
+ label="Add comments to help edit generated text", interactive=True, visible=False
749
+ )
750
+ regenerate_btn = gr.Button("Regenerate Article", variant="primary", visible=False)
751
+ ai_detector_dropdown = gr.Radio(
752
+ choices=ai_check_options, label="Select AI Detector", value="Polygraf AI"
753
+ )
754
+ ai_check_btn = gr.Button("AI Check")
755
+
756
+ with gr.Accordion("AI Detection Results", open=True):
757
+ ai_check_result = gr.Label(label="AI Check Result")
758
+ highlighted_text = gr.HTML(label="Sentence Breakdown", visible=False)
759
+ humanize_btn = gr.Button("Humanize")
760
+ # humanized_output = gr.Textbox(label="Humanized Article", lines=20, elem_classes=["custom-textbox"])
761
+ humanized_output = gr.Markdown(label="Humanized Article", value="\n\n\n\n", render=True)
762
+ # copy_to_input_btn = gr.Button("Copy to Input for AI Check")
763
+
764
+ with gr.Tab("History"):
765
+ history_chat = gr.Chatbot(label="Generation History")
766
+ refresh_button = gr.Button("Refresh History")
767
+ refresh_button.click(get_history, outputs=history_chat)
768
 
769
  def regenerate_visible(text):
770
  if text:
 
876
  top_k_slider,
877
  length_penalty_slider,
878
  ],
 
 
 
 
 
 
879
  outputs=[output_article],
880
  )
881