|
import gradio as gr |
|
import requests |
|
import os |
|
|
|
|
|
proxycurl_api_key = os.getenv("PROXYCURL_API_KEY") |
|
groq_api_key = os.getenv("GROQ_CLOUD_API_KEY") |
|
|
|
|
|
def get_linkedin_profile_via_proxycurl(linkedin_profile_url): |
|
headers = { |
|
"Authorization": f"Bearer {proxycurl_api_key}", |
|
} |
|
url = f"https://nubela.co/proxycurl/api/v2/linkedin?url={linkedin_profile_url}" |
|
|
|
response = requests.get(url, headers=headers) |
|
|
|
if response.status_code == 200: |
|
data = response.json() |
|
bio = data.get("summary", "No bio available") |
|
return bio |
|
else: |
|
return "Error: Unable to fetch LinkedIn profile" |
|
|
|
|
|
def generate_and_correct_email(bio, company_name, role): |
|
url = "https://api.groq.com/openai/v1/chat/completions" |
|
headers = { |
|
"Authorization": f"Bearer {groq_api_key}", |
|
"Content-Type": "application/json", |
|
} |
|
|
|
|
|
prompt = f""" |
|
Write a professional email applying for the {role} position at {company_name}. |
|
Use this bio: {bio}. |
|
|
|
The email should focus on how the candidate's skills and experience align with the job requirements, |
|
highlighting why they are a great fit for the role. |
|
Avoid overly bragging about accomplishments and focus more on how the candidate can meet the company's needs. |
|
Structure the email as follows: |
|
- Introduction |
|
- Skills and experience directly related to the job requirements |
|
- Why the candidate is the most suitable person for the role |
|
- Conclusion |
|
""" |
|
|
|
|
|
data = { |
|
"messages": [ |
|
{ |
|
"role": "user", |
|
"content": prompt |
|
} |
|
], |
|
"model": "llama3-8b-8192" |
|
} |
|
|
|
response = requests.post(url, headers=headers, json=data) |
|
|
|
if response.status_code == 200: |
|
|
|
return response.json()["choices"][0]["message"]["content"].strip() |
|
else: |
|
|
|
print(f"Error: {response.status_code}, {response.text}") |
|
return "Error generating email. Please check your API key or try again later." |
|
|
|
|
|
def create_email(name, company_name, role, email, phone, linkedin_profile_url): |
|
|
|
if linkedin_profile_url: |
|
bio = get_linkedin_profile_via_proxycurl(linkedin_profile_url) |
|
else: |
|
bio = f"{name} is a professional." |
|
|
|
|
|
generated_email = generate_and_correct_email(bio, company_name, role) |
|
|
|
|
|
signature = f"\n\nBest regards,\n{name}\nEmail: {email}\nPhone: {phone}\nLinkedIn: {linkedin_profile_url if linkedin_profile_url else 'Not provided'}" |
|
|
|
|
|
if "Best regards" in generated_email: |
|
generated_email = generated_email.split("Best regards")[0].strip() |
|
|
|
|
|
return generated_email + signature |
|
|
|
|
|
def gradio_ui(): |
|
|
|
name_input = gr.Textbox(label="Name", placeholder="Enter your name") |
|
|
|
company_name_input = gr.Textbox(label="Company Name", placeholder="Enter the name of the company you are applying to") |
|
role_input = gr.Textbox(label="Role", placeholder="Enter the role you are applying for") |
|
|
|
email_input = gr.Textbox(label="Email Address", placeholder="Enter your email address") |
|
phone_input = gr.Textbox(label="Phone Number", placeholder="Enter your phone number") |
|
linkedin_input = gr.Textbox(label="LinkedIn URL", placeholder="Enter your LinkedIn profile URL") |
|
|
|
|
|
email_output = gr.Textbox(label="Generated Email", placeholder="Your generated email will appear here", lines=10) |
|
|
|
|
|
demo = gr.Interface( |
|
fn=create_email, |
|
inputs=[name_input, company_name_input, role_input, email_input, phone_input, linkedin_input], |
|
outputs=[email_output], |
|
title="Email Writing AI Agent", |
|
description="Generate a professional email for a job application by providing your basic info.", |
|
allow_flagging="never" |
|
) |
|
|
|
|
|
demo.launch() |
|
|
|
|
|
if __name__ == "__main__": |
|
gradio_ui() |
|
|