Spaces:
Sleeping
Sleeping
Update agents.py
Browse files
agents.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
from crewai import Agent
|
| 2 |
|
| 3 |
-
from tools import get_scrape_tool, get_search_tool
|
| 4 |
|
| 5 |
def get_content_planner_agent():
|
| 6 |
return Agent(
|
|
@@ -14,8 +14,8 @@ def get_content_planner_agent():
|
|
| 14 |
"Your work is the basis for "
|
| 15 |
"the Content Writer to write an article on this topic.",
|
| 16 |
allow_delegation=False,
|
| 17 |
-
verbose=True
|
| 18 |
-
tools = [get_scrape_tool(), get_search_tool()]
|
| 19 |
)
|
| 20 |
|
| 21 |
def get_content_writer_agent():
|
|
|
|
| 1 |
from crewai import Agent
|
| 2 |
|
| 3 |
+
#from tools import get_scrape_tool, get_search_tool
|
| 4 |
|
| 5 |
def get_content_planner_agent():
|
| 6 |
return Agent(
|
|
|
|
| 14 |
"Your work is the basis for "
|
| 15 |
"the Content Writer to write an article on this topic.",
|
| 16 |
allow_delegation=False,
|
| 17 |
+
verbose=True
|
| 18 |
+
#tools = [get_scrape_tool(), get_search_tool()]
|
| 19 |
)
|
| 20 |
|
| 21 |
def get_content_writer_agent():
|