Update app.py
Browse files
app.py
CHANGED
@@ -19,6 +19,7 @@ class AutonomousEmailAgent:
|
|
19 |
self.company_info = None
|
20 |
self.role_description = None
|
21 |
self.company_url = None
|
|
|
22 |
|
23 |
# Fetch LinkedIn data via Proxycurl
|
24 |
def fetch_linkedin_data(self):
|
@@ -118,6 +119,10 @@ class AutonomousEmailAgent:
|
|
118 |
instruction = reasoning_output.lower().strip()
|
119 |
|
120 |
if "scrape" in instruction:
|
|
|
|
|
|
|
|
|
121 |
self.fetch_company_url()
|
122 |
if self.company_url:
|
123 |
self.fetch_company_info_with_firecrawl(self.company_url)
|
@@ -126,7 +131,7 @@ class AutonomousEmailAgent:
|
|
126 |
elif "generate_email" in instruction:
|
127 |
return self.generate_email()
|
128 |
|
129 |
-
elif "fallback" in instruction:
|
130 |
print("Action: Using fallback values for missing data.")
|
131 |
if not self.company_info:
|
132 |
self.company_info = "A leading company in its field."
|
@@ -138,7 +143,7 @@ class AutonomousEmailAgent:
|
|
138 |
print("Error: Unrecognized instruction from LLM. Proceeding with available data.")
|
139 |
return self.generate_email()
|
140 |
|
141 |
-
# Fetch company URL using SERP API
|
142 |
def fetch_company_url(self):
|
143 |
serp_api_key = os.getenv("SERP_API_KEY")
|
144 |
print(f"Fetching company URL for {self.company_name} using SERP API...")
|
@@ -156,7 +161,7 @@ class AutonomousEmailAgent:
|
|
156 |
else:
|
157 |
print(f"Error fetching company URL: {response.status_code}")
|
158 |
|
159 |
-
# Fetch company information via Firecrawl API using company URL
|
160 |
def fetch_company_info_with_firecrawl(self, company_url):
|
161 |
firecrawl_api_key = os.getenv("FIRECRAWL_API_KEY")
|
162 |
print(f"Fetching company info for {company_url} using Firecrawl.")
|
@@ -173,7 +178,7 @@ class AutonomousEmailAgent:
|
|
173 |
print(f"Error: Unable to fetch company info via Firecrawl. Status code: {response.status_code}")
|
174 |
self.company_info = "A leading company in its field."
|
175 |
|
176 |
-
# Final Action: Generate the email using Groq Cloud LLM
|
177 |
def generate_email(self):
|
178 |
print("Action: Generating the email using Groq Cloud LLM with the gathered information.")
|
179 |
|
|
|
19 |
self.company_info = None
|
20 |
self.role_description = None
|
21 |
self.company_url = None
|
22 |
+
self.attempts = 0 # Counter for iterations
|
23 |
|
24 |
# Fetch LinkedIn data via Proxycurl
|
25 |
def fetch_linkedin_data(self):
|
|
|
119 |
instruction = reasoning_output.lower().strip()
|
120 |
|
121 |
if "scrape" in instruction:
|
122 |
+
if self.attempts >= 5:
|
123 |
+
print("Max attempts reached. Proceeding with fallback option.")
|
124 |
+
return self.generate_fallback_email()
|
125 |
+
self.attempts += 1
|
126 |
self.fetch_company_url()
|
127 |
if self.company_url:
|
128 |
self.fetch_company_info_with_firecrawl(self.company_url)
|
|
|
131 |
elif "generate_email" in instruction:
|
132 |
return self.generate_email()
|
133 |
|
134 |
+
elif "fallback" in instruction or self.attempts >= 5:
|
135 |
print("Action: Using fallback values for missing data.")
|
136 |
if not self.company_info:
|
137 |
self.company_info = "A leading company in its field."
|
|
|
143 |
print("Error: Unrecognized instruction from LLM. Proceeding with available data.")
|
144 |
return self.generate_email()
|
145 |
|
146 |
+
# Fetch company URL using SERP API
|
147 |
def fetch_company_url(self):
|
148 |
serp_api_key = os.getenv("SERP_API_KEY")
|
149 |
print(f"Fetching company URL for {self.company_name} using SERP API...")
|
|
|
161 |
else:
|
162 |
print(f"Error fetching company URL: {response.status_code}")
|
163 |
|
164 |
+
# Fetch company information via Firecrawl API using company URL
|
165 |
def fetch_company_info_with_firecrawl(self, company_url):
|
166 |
firecrawl_api_key = os.getenv("FIRECRAWL_API_KEY")
|
167 |
print(f"Fetching company info for {company_url} using Firecrawl.")
|
|
|
178 |
print(f"Error: Unable to fetch company info via Firecrawl. Status code: {response.status_code}")
|
179 |
self.company_info = "A leading company in its field."
|
180 |
|
181 |
+
# Final Action: Generate the email using Groq Cloud LLM
|
182 |
def generate_email(self):
|
183 |
print("Action: Generating the email using Groq Cloud LLM with the gathered information.")
|
184 |
|