File size: 2,285 Bytes
41f0774
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
47
48
49
50
51
52
53
54
55
56
57
58
import os
import gradio as gr
from groq import Groq

client = Groq(
    api_key=os.environ.get("GROQ_API_KEY"),
)

def structure_info(info):
    prompt = f"Please just structure and summarize the following information about a person or company and just simply give the result directly: {info}"
    chat_completion = client.chat.completions.create(
        messages=[
            {
                "role": "user",
                "content": prompt,
            }
        ],
        model="llama-3.1-8b-instant",
    )
    return chat_completion.choices[0].message.content

def generate_email(sender_name, email_subject, recipient, structured_info):
    prompt = f"""I'm {sender_name}. Write a personalized email to {recipient} about {email_subject} which will be personalized to {recipient} by understanding {structured_info}. The email should introduce the sender, briefly describe the subject, and highlight its key benefits or relevance to the recipient's profile or company."""
    
    chat_completion = client.chat.completions.create(
        messages=[
            {
                "role": "user",
                "content": prompt,
            }
        ],
        model="llama-3.1-8b-instant",
    )
    return chat_completion.choices[0].message.content

def email_interface(name, subject, recipient, recipient_info):
    structured_info = structure_info(recipient_info)
    return generate_email(name, subject, recipient, structured_info)

demo = gr.Interface(
    fn=email_interface,
    inputs=[
        gr.Textbox(label="Your Name"),
        gr.Textbox(label="Email Subject"),
        gr.Textbox(label="Recipient Name/Company"),
        gr.Textbox(label="Recipient Information (e.g., Name, Motive, What they do)")
    ],
    outputs="text",
    title="EmailGenie",
    description="Generate a personalized email based on recipient information",
    examples=[
        ["John Doe", "Collaboration on AI Project", "TechCorp", "TechCorp is a leading AI research company focused on developing cutting-edge machine learning algorithms."],
        ["Jane Smith", "AI Workshop Invitation", "Dr. Alex Johnson", "Dr. Alex Johnson is a renowned AI researcher specializing in natural language processing at Stanford University."]
    ]
)

if __name__ == "__main__":
    demo.launch()