fix typos in browser_tools.py

This commit is contained in:
Scott Stoltzman
2023-12-31 13:57:55 -07:00
committed by GitHub
parent a55eebe383
commit 2d2822e8ca

View File

@@ -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)