File size: 1,211 Bytes
89b0bb7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14bf143
b57ad76
89b0bb7
a4a151a
14bf143
89b0bb7
 
 
 
 
 
14bf143
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import openai
import gradio as gr
   
def summarize(api_key,text):
    openai.api_key = api_key

    prompt = f"""Take deep breath and summarize the main 
    essential innovative idea in simple and cohesive one paragraph 
    and the first sentence summarize it all: {text}""" 
    response = openai.ChatCompletion.create(
    model="gpt-4",
    messages=[ {
        "role": "system",
        "content": "You professional writing assistant."
      },
    {"role": "user",
        "content": prompt
      }],
    
       temperature=0,
    max_tokens=1024,
    top_p=1,
    frequency_penalty=0.5,
    presence_penalty=0.5
    )
    summary = response.choices[0].message["content"]
    return summary



def main():
    interface = gr.Interface(
        fn=summarize,
        inputs=[
            gr.inputs.Textbox(label="API Key", type="password", lines=1),
            gr.inputs.Textbox(label="Text to Summarize", lines=25)
        ],
        outputs=gr.outputs.Textbox(label="Summary", lines=10),
        live=False,
        title="Ibrahim App : GPT4 One Paragraph Summary",
        description="Summarize text using GPT-4 in one Paragraph."
    )
    interface.launch()

if __name__ == "__main__":
    main()