Spaces:
Sleeping
Sleeping
Update agents.py
Browse files
agents.py
CHANGED
@@ -22,7 +22,7 @@ def get_author_agent(model, verbose):
|
|
22 |
"You base your writing on the work of the Researcher, who provides content on this topic. "
|
23 |
"Your work is the basis for the Editor to edit the article on this topic.",
|
24 |
llm=ChatOpenAI(model=model, max_tokens=32768),
|
25 |
-
tools = [
|
26 |
allow_delegation=False,
|
27 |
verbose=verbose
|
28 |
)
|
@@ -34,7 +34,7 @@ def get_editor_agent(model, verbose):
|
|
34 |
backstory="You're working on editing an article on topic: {topic}. "
|
35 |
"You base your editing on the work of the Author, who provides an article on this topic.",
|
36 |
llm=ChatOpenAI(model=model, max_tokens=32768),
|
37 |
-
tools = [
|
38 |
allow_delegation=False,
|
39 |
verbose=verbose
|
40 |
)
|
|
|
22 |
"You base your writing on the work of the Researcher, who provides content on this topic. "
|
23 |
"Your work is the basis for the Editor to edit the article on this topic.",
|
24 |
llm=ChatOpenAI(model=model, max_tokens=32768),
|
25 |
+
tools = [],
|
26 |
allow_delegation=False,
|
27 |
verbose=verbose
|
28 |
)
|
|
|
34 |
backstory="You're working on editing an article on topic: {topic}. "
|
35 |
"You base your editing on the work of the Author, who provides an article on this topic.",
|
36 |
llm=ChatOpenAI(model=model, max_tokens=32768),
|
37 |
+
tools = [],
|
38 |
allow_delegation=False,
|
39 |
verbose=verbose
|
40 |
)
|