Spaces:
Sleeping
Sleeping
Update agents.py
Browse files
agents.py
CHANGED
@@ -9,7 +9,7 @@ def get_researcher_agent(model):
|
|
9 |
backstory="You're working on researching content on topic {topic}. "
|
10 |
"Your work is the basis for the Blogger to post on this topic.",
|
11 |
llm=ChatOpenAI(model=model, temperature=0.7),
|
12 |
-
tools = [
|
13 |
allow_delegation=False,
|
14 |
verbose=False
|
15 |
)
|
|
|
9 |
backstory="You're working on researching content on topic {topic}. "
|
10 |
"Your work is the basis for the Blogger to post on this topic.",
|
11 |
llm=ChatOpenAI(model=model, temperature=0.7),
|
12 |
+
tools = [search_tool(), scrape_tool(), today_tool()],
|
13 |
allow_delegation=False,
|
14 |
verbose=False
|
15 |
)
|