Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -71,7 +71,7 @@ def get_agents():
|
|
71 |
[tavily_tool_wrapped, serper_tool],
|
72 |
"You are a Glassdoor review scraper. Retrieve reviews about the given company. "
|
73 |
"Consider points like Overall Rating, Compensation, Senior Management, Career Opportunities."
|
74 |
-
"Provide stars
|
75 |
"Always scrap the same data"
|
76 |
)
|
77 |
|
@@ -84,8 +84,8 @@ def get_agents():
|
|
84 |
|
85 |
information_agent = create_agent(
|
86 |
llm,
|
87 |
-
[search_google_tool,
|
88 |
-
"You are an information collector. Retrieve details such as Website, Sector, Industry, Location, Employees, Founding Year, and LinkedIn URL."
|
89 |
"Linkedin URL will be always like this https://www.linkedin.com/company/company_name"
|
90 |
)
|
91 |
|
|
|
71 |
[tavily_tool_wrapped, serper_tool],
|
72 |
"You are a Glassdoor review scraper. Retrieve reviews about the given company. "
|
73 |
"Consider points like Overall Rating, Compensation, Senior Management, Career Opportunities."
|
74 |
+
"Provide me number of stars against each point."
|
75 |
"Always scrap the same data"
|
76 |
)
|
77 |
|
|
|
84 |
|
85 |
information_agent = create_agent(
|
86 |
llm,
|
87 |
+
[search_google_tool, tavily_tool_wrapped, serper_tool],
|
88 |
+
"You are an information collector. Retrieve details such as Website, Sector, Industry, Location, Employees, Founding Year, and LinkedIn URL. Provide me all these detail in a tabular format."
|
89 |
"Linkedin URL will be always like this https://www.linkedin.com/company/company_name"
|
90 |
)
|
91 |
|