From 2d2822e8ca748cf4dbd2a5f0ed902c242b0e2aa9 Mon Sep 17 00:00:00 2001 From: Scott Stoltzman <23501850+stoltzmaniac@users.noreply.github.com> Date: Sun, 31 Dec 2023 13:57:55 -0700 Subject: [PATCH] fix typos in browser_tools.py --- stock_analysis/tools/browser_tools.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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)