Spaces:
Sleeping
Sleeping
llm
Browse files
app.py
CHANGED
@@ -243,6 +243,7 @@ resume_analyzer = Agent(
|
|
243 |
providing actionable suggestions for improvement. Your recommendations always
|
244 |
focus on both human readability and ATS compatibility.""",
|
245 |
verbose=True,
|
|
|
246 |
# knowledge_sources=[pdf_source],
|
247 |
)
|
248 |
job_analyzer = Agent(
|
@@ -255,6 +256,8 @@ job_analyzer = Agent(
|
|
255 |
and soft skills requirements, and can evaluate experience levels accurately.""",
|
256 |
verbose=True,
|
257 |
tools=[ScrapeWebsiteTool()],
|
|
|
|
|
258 |
# knowledge_sources=[pdf_source],
|
259 |
)
|
260 |
company_researcher = Agent(
|
@@ -267,6 +270,8 @@ company_researcher = Agent(
|
|
267 |
candidates for interviews. """,
|
268 |
tools=[SerperDevTool()],
|
269 |
verbose=True,
|
|
|
|
|
270 |
# knowledge_sources=[pdf_source],
|
271 |
|
272 |
)
|
@@ -279,6 +284,8 @@ resume_writer = Agent (
|
|
279 |
beautifully formatted, ATS-friendly documents that maintain professionalism
|
280 |
while showcasing candidate strengths effectively.""",
|
281 |
verbose=True,
|
|
|
|
|
282 |
)
|
283 |
report_generator = Agent(
|
284 |
role= "Career Report Generator and Markdown Specialist",
|
@@ -290,6 +297,8 @@ report_generator = Agent(
|
|
290 |
into clear, actionable insights with proper markdown formatting, emojis, and
|
291 |
visual elements that make information both appealing and easily digestible.""",
|
292 |
verbose=True,
|
|
|
|
|
293 |
)
|
294 |
|
295 |
analyze_job_task = Task(
|
|
|
243 |
providing actionable suggestions for improvement. Your recommendations always
|
244 |
focus on both human readability and ATS compatibility.""",
|
245 |
verbose=True,
|
246 |
+
llm = llm,
|
247 |
# knowledge_sources=[pdf_source],
|
248 |
)
|
249 |
job_analyzer = Agent(
|
|
|
256 |
and soft skills requirements, and can evaluate experience levels accurately.""",
|
257 |
verbose=True,
|
258 |
tools=[ScrapeWebsiteTool()],
|
259 |
+
llm = llm,
|
260 |
+
|
261 |
# knowledge_sources=[pdf_source],
|
262 |
)
|
263 |
company_researcher = Agent(
|
|
|
270 |
candidates for interviews. """,
|
271 |
tools=[SerperDevTool()],
|
272 |
verbose=True,
|
273 |
+
llm = llm,
|
274 |
+
|
275 |
# knowledge_sources=[pdf_source],
|
276 |
|
277 |
)
|
|
|
284 |
beautifully formatted, ATS-friendly documents that maintain professionalism
|
285 |
while showcasing candidate strengths effectively.""",
|
286 |
verbose=True,
|
287 |
+
llm = llm,
|
288 |
+
|
289 |
)
|
290 |
report_generator = Agent(
|
291 |
role= "Career Report Generator and Markdown Specialist",
|
|
|
297 |
into clear, actionable insights with proper markdown formatting, emojis, and
|
298 |
visual elements that make information both appealing and easily digestible.""",
|
299 |
verbose=True,
|
300 |
+
llm = llm,
|
301 |
+
|
302 |
)
|
303 |
|
304 |
analyze_job_task = Task(
|