Prathamesh1420 commited on
Commit
6c1a18d
1 Parent(s): 40f80e3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -4
app.py CHANGED
@@ -36,7 +36,7 @@ read_resume = FileReadTool(file_path='./fake_resume.md')
36
 
37
  # Attempt to initialize MDXSearchTool
38
  try:
39
- emantic_search_resume = MDXSearchTool(
40
  config=dict(
41
  llm=dict(
42
  provider="ollama",
@@ -74,7 +74,8 @@ researcher = Agent(
74
  profiler = Agent(
75
  role="Personal Profiler for Engineers",
76
  goal="Do incredible research on job applicants to help them stand out in the job market",
77
- tools=[scrape_tool, search_tool, read_resume],
 
78
  verbose=True,
79
  backstory=(
80
  "Equipped with analytical prowess, you dissect and synthesize information "
@@ -87,7 +88,8 @@ profiler = Agent(
87
  resume_strategist = Agent(
88
  role="Resume Strategist for Engineers",
89
  goal="Find all the best ways to make a resume stand out in the job market.",
90
- tools=[scrape_tool, search_tool, read_resume],
 
91
  verbose=True,
92
  backstory=(
93
  "With a strategic mind and an eye for detail, you excel at refining resumes to highlight the most "
@@ -99,7 +101,8 @@ resume_strategist = Agent(
99
  interview_preparer = Agent(
100
  role="Engineering Interview Preparer",
101
  goal="Create interview questions and talking points based on the resume and job requirements",
102
- tools=[scrape_tool, search_tool, read_resume],
 
103
  verbose=True,
104
  backstory=(
105
  "Your role is crucial in anticipating the dynamics of interviews. With your ability to formulate key questions "
 
36
 
37
  # Attempt to initialize MDXSearchTool
38
  try:
39
+ semantic_search_resume = MDXSearchTool(
40
  config=dict(
41
  llm=dict(
42
  provider="ollama",
 
74
  profiler = Agent(
75
  role="Personal Profiler for Engineers",
76
  goal="Do incredible research on job applicants to help them stand out in the job market",
77
+ tools = [scrape_tool, search_tool,
78
+ read_resume, semantic_search_resume],
79
  verbose=True,
80
  backstory=(
81
  "Equipped with analytical prowess, you dissect and synthesize information "
 
88
  resume_strategist = Agent(
89
  role="Resume Strategist for Engineers",
90
  goal="Find all the best ways to make a resume stand out in the job market.",
91
+ tools = [scrape_tool, search_tool,
92
+ read_resume, semantic_search_resume],
93
  verbose=True,
94
  backstory=(
95
  "With a strategic mind and an eye for detail, you excel at refining resumes to highlight the most "
 
101
  interview_preparer = Agent(
102
  role="Engineering Interview Preparer",
103
  goal="Create interview questions and talking points based on the resume and job requirements",
104
+ tools = [scrape_tool, search_tool,
105
+ read_resume, semantic_search_resume],
106
  verbose=True,
107
  backstory=(
108
  "Your role is crucial in anticipating the dynamics of interviews. With your ability to formulate key questions "