diff --git a/stock_analysis/tools/browser_tools.py b/stock_analysis/tools/browser_tools.py index 36a10a9f..2e8343e3 100644 --- a/stock_analysis/tools/browser_tools.py +++ b/stock_analysis/tools/browser_tools.py @@ -24,14 +24,14 @@ class BrowserTools(): agent = Agent( role='Principal Researcher', goal= - 'Do amazing researches and summaries based on the content you are working with', + 'Do amazing research and summaries based on the content you are working with', backstory= - "You're a Principal Researcher at a big company and you need to do a research about a given topic.", + "You're a Principal Researcher at a big company and you need to do research about a given topic.", allow_delegation=False) task = Task( agent=agent, description= - f'Analyze and summarize the content bellow, make sure to include the most relevant information in the summary, return only the summary nothing else.\n\nCONTENT\n----------\n{chunk}' + f'Analyze and summarize the content below, make sure to include the most relevant information in the summary, return only the summary nothing else.\n\nCONTENT\n----------\n{chunk}' ) summary = task.execute() summaries.append(summary)