File size: 756 Bytes
325b94c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
from .units_structure import (
    course_structuring_agent,
    course_structuring_task,
)
from .book_structure import (
    book_structure_agent,
    generate_book_outline_task,
)
from .book_planning import (
    agent_task_planning
)
from .book_content import (
    make_writer_crew,
    make_quality_crew,
)
from .book_content_gpt import (
    make_writer_crew_gpt,
    make_quality_crew_gpt,
)
from .queries_agent import (
    query_agent,    
    query_task,
)
from .units_intro import (
    intro_generator,
    intro_generation_task,
)
from .intro_plan import(
    intro_style_planner,
    intro_style_planner_task
)
from .auto_units_structure import (
    book_units_langchain_agent,
)
from .book_content_new import (
    make_writer_editor_crew
)