|
import os |
|
import requests |
|
import openai |
|
import gradio as gr |
|
from swarm import Swarm, Agent |
|
|
|
|
|
OPENAI_API_KEY = os.getenv("OPENAI_API_KEY") |
|
PROXYCURL_API_KEY = os.getenv("PROXYCURL_API_KEY") |
|
FIRECRAWL_API_KEY = os.getenv("FIRECRAWL_API_KEY") |
|
|
|
|
|
def fetch_linkedin_data(linkedin_url): |
|
headers = {'Authorization': f'Bearer {PROXYCURL_API_KEY}'} |
|
response = requests.get(f"https://api.proxycurl.com/v1/linkedin/{linkedin_url}", headers=headers) |
|
if response.status_code == 200: |
|
return response.json() |
|
else: |
|
return {"error": "Unable to fetch LinkedIn data"} |
|
|
|
|
|
def fetch_company_info(company_url): |
|
headers = {'Authorization': f'Bearer {FIRECRAWL_API_KEY}'} |
|
response = requests.get(f"https://api.firecrawl.com/v1/scrape?url={company_url}", headers=headers) |
|
if response.status_code == 200: |
|
return response.json() |
|
else: |
|
return {"error": "Unable to fetch company information"} |
|
|
|
|
|
def structure_email(user_data, linkedin_info, company_info): |
|
why = f"I am passionate about {company_info.get('mission', 'your mission')} because it aligns with my experience as {linkedin_info.get('current_role', 'a professional')}." |
|
how = f"My skills in {user_data['role']} match the requirements and goals of your organization." |
|
what = f"I can bring my experience in {linkedin_info.get('skills', 'relevant skills')} to help achieve {company_info.get('goal', 'your company goals')}." |
|
structured_input = f"{why}\n\n{how}\n\n{what}" |
|
return structured_input |
|
|
|
|
|
def generate_email_content(api_key, prompt): |
|
openai.api_key = api_key |
|
response = openai.Completion.create( |
|
model="nemotron-70b", |
|
prompt=prompt, |
|
max_tokens=500 |
|
) |
|
return response.choices[0].text |
|
|
|
|
|
def validate_email(email_content): |
|
return "Why" in email_content and "How" in email_content and "What" in email_content |
|
|
|
|
|
def transfer_to_email_generation(): |
|
return email_agent_b |
|
|
|
|
|
email_agent_a = Agent( |
|
name="Data Collection Agent", |
|
instructions="Collect user inputs and relevant data (LinkedIn and company details).", |
|
functions=[transfer_to_email_generation] |
|
) |
|
|
|
|
|
email_agent_b = Agent( |
|
name="Email Generation Agent", |
|
instructions="Structure the email using the 'Start with Why' model and generate professional content.", |
|
) |
|
|
|
|
|
client = Swarm() |
|
|
|
|
|
def run_agent(name, email, phone, linkedin_url, company_url, role): |
|
user_data = { |
|
"name": name, |
|
"email": email, |
|
"phone": phone, |
|
"linkedin_url": linkedin_url, |
|
"company_url": company_url, |
|
"role": role |
|
} |
|
|
|
|
|
linkedin_info = fetch_linkedin_data(linkedin_url) |
|
company_info = fetch_company_info(company_url) |
|
if "error" in linkedin_info or "error" in company_info: |
|
return "Error fetching data. Please check the LinkedIn and company URLs." |
|
|
|
|
|
messages = [{"role": "user", "content": "Initiate email generation."}] |
|
response = client.run(agent=email_agent_a, messages=messages) |
|
|
|
|
|
prompt = structure_email(user_data, linkedin_info, company_info) |
|
email_content = generate_email_content(OPENAI_API_KEY, prompt) |
|
|
|
|
|
for i in range(3): |
|
if validate_email(email_content): |
|
return email_content |
|
else: |
|
|
|
refined_prompt = f"Refine: {prompt}" |
|
email_content = generate_email_content(OPENAI_API_KEY, refined_prompt) |
|
|
|
return "Unable to generate a valid email after 3 attempts." |
|
|
|
|
|
final_interface = gr.Interface( |
|
fn=run_agent, |
|
inputs=[ |
|
gr.Textbox(label="Name"), |
|
gr.Textbox(label="Email"), |
|
gr.Textbox(label="Phone Number"), |
|
gr.Textbox(label="LinkedIn Profile URL"), |
|
gr.Textbox(label="Company URL or Name"), |
|
gr.Textbox(label="Role Being Applied For") |
|
], |
|
outputs="text", |
|
title="Email Writing AI Agent", |
|
description="Autonomously generate a professional email tailored to the job application." |
|
) |
|
|
|
if __name__ == "__main__": |
|
final_interface.launch() |
|
|