├── .gitignore ├── 1_basic_flow └── basic_flow.py ├── 2_unstructured_flow └── unstructured_flow.py ├── 3_structured_flow └── structured_flow.py ├── 4_conditional_flows ├── 1_or_flow.py ├── 2_and_flow.py └── 3_router_flow.py ├── 5_flows_with_crews └── demo_flow │ ├── .gitignore │ ├── README.md │ ├── crewai_flow.html │ ├── poem.txt │ ├── pyproject.toml │ ├── src │ └── demo_flow │ │ ├── __init__.py │ │ ├── crews │ │ └── poem_crew │ │ │ ├── config │ │ │ ├── agents.yaml │ │ │ └── tasks.yaml │ │ │ └── poem_crew.py │ │ ├── main.py │ │ └── tools │ │ ├── __init__.py │ │ └── custom_tool.py │ └── uv.lock ├── 6_write_a_book_with_flows └── write_a_book_with_flows │ ├── .gitignore │ ├── Automating_Tasks_with_CrewAI.md │ ├── Current State of AI September 2024 - Result.md │ ├── README.md │ ├── pyproject.toml │ ├── src │ └── write_a_book_with_flows │ │ ├── __init__.py │ │ ├── crews │ │ ├── outline_book_crew │ │ │ ├── config │ │ │ │ ├── agents.yaml │ │ │ │ └── tasks.yaml │ │ │ └── outline_crew.py │ │ └── write_book_chapter_crew │ │ │ ├── config │ │ │ ├── agents.yaml │ │ │ └── tasks.yaml │ │ │ └── write_book_chapter_crew.py │ │ ├── main.py │ │ └── types.py │ └── uv.lock ├── README.md └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | -------------------------------------------------------------------------------- /1_basic_flow/basic_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/crewai-flows-crash-course/HEAD/1_basic_flow/basic_flow.py -------------------------------------------------------------------------------- /2_unstructured_flow/unstructured_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/crewai-flows-crash-course/HEAD/2_unstructured_flow/unstructured_flow.py -------------------------------------------------------------------------------- /3_structured_flow/structured_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/crewai-flows-crash-course/HEAD/3_structured_flow/structured_flow.py -------------------------------------------------------------------------------- /4_conditional_flows/1_or_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/crewai-flows-crash-course/HEAD/4_conditional_flows/1_or_flow.py -------------------------------------------------------------------------------- /4_conditional_flows/2_and_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/crewai-flows-crash-course/HEAD/4_conditional_flows/2_and_flow.py -------------------------------------------------------------------------------- /4_conditional_flows/3_router_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/crewai-flows-crash-course/HEAD/4_conditional_flows/3_router_flow.py -------------------------------------------------------------------------------- /5_flows_with_crews/demo_flow/.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | __pycache__/ 3 | lib/ 4 | -------------------------------------------------------------------------------- /5_flows_with_crews/demo_flow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/crewai-flows-crash-course/HEAD/5_flows_with_crews/demo_flow/README.md -------------------------------------------------------------------------------- /5_flows_with_crews/demo_flow/crewai_flow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/crewai-flows-crash-course/HEAD/5_flows_with_crews/demo_flow/crewai_flow.html -------------------------------------------------------------------------------- /5_flows_with_crews/demo_flow/poem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/crewai-flows-crash-course/HEAD/5_flows_with_crews/demo_flow/poem.txt -------------------------------------------------------------------------------- /5_flows_with_crews/demo_flow/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/crewai-flows-crash-course/HEAD/5_flows_with_crews/demo_flow/pyproject.toml -------------------------------------------------------------------------------- /5_flows_with_crews/demo_flow/src/demo_flow/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_flows_with_crews/demo_flow/src/demo_flow/crews/poem_crew/config/agents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/crewai-flows-crash-course/HEAD/5_flows_with_crews/demo_flow/src/demo_flow/crews/poem_crew/config/agents.yaml -------------------------------------------------------------------------------- /5_flows_with_crews/demo_flow/src/demo_flow/crews/poem_crew/config/tasks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/crewai-flows-crash-course/HEAD/5_flows_with_crews/demo_flow/src/demo_flow/crews/poem_crew/config/tasks.yaml -------------------------------------------------------------------------------- /5_flows_with_crews/demo_flow/src/demo_flow/crews/poem_crew/poem_crew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/crewai-flows-crash-course/HEAD/5_flows_with_crews/demo_flow/src/demo_flow/crews/poem_crew/poem_crew.py -------------------------------------------------------------------------------- /5_flows_with_crews/demo_flow/src/demo_flow/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/crewai-flows-crash-course/HEAD/5_flows_with_crews/demo_flow/src/demo_flow/main.py -------------------------------------------------------------------------------- /5_flows_with_crews/demo_flow/src/demo_flow/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5_flows_with_crews/demo_flow/src/demo_flow/tools/custom_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/crewai-flows-crash-course/HEAD/5_flows_with_crews/demo_flow/src/demo_flow/tools/custom_tool.py -------------------------------------------------------------------------------- /5_flows_with_crews/demo_flow/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/crewai-flows-crash-course/HEAD/5_flows_with_crews/demo_flow/uv.lock -------------------------------------------------------------------------------- /6_write_a_book_with_flows/write_a_book_with_flows/.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | __pycache__/ 3 | -------------------------------------------------------------------------------- /6_write_a_book_with_flows/write_a_book_with_flows/Automating_Tasks_with_CrewAI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/crewai-flows-crash-course/HEAD/6_write_a_book_with_flows/write_a_book_with_flows/Automating_Tasks_with_CrewAI.md -------------------------------------------------------------------------------- /6_write_a_book_with_flows/write_a_book_with_flows/Current State of AI September 2024 - Result.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/crewai-flows-crash-course/HEAD/6_write_a_book_with_flows/write_a_book_with_flows/Current State of AI September 2024 - Result.md -------------------------------------------------------------------------------- /6_write_a_book_with_flows/write_a_book_with_flows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/crewai-flows-crash-course/HEAD/6_write_a_book_with_flows/write_a_book_with_flows/README.md -------------------------------------------------------------------------------- /6_write_a_book_with_flows/write_a_book_with_flows/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/crewai-flows-crash-course/HEAD/6_write_a_book_with_flows/write_a_book_with_flows/pyproject.toml -------------------------------------------------------------------------------- /6_write_a_book_with_flows/write_a_book_with_flows/src/write_a_book_with_flows/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_write_a_book_with_flows/write_a_book_with_flows/src/write_a_book_with_flows/crews/outline_book_crew/config/agents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/crewai-flows-crash-course/HEAD/6_write_a_book_with_flows/write_a_book_with_flows/src/write_a_book_with_flows/crews/outline_book_crew/config/agents.yaml -------------------------------------------------------------------------------- /6_write_a_book_with_flows/write_a_book_with_flows/src/write_a_book_with_flows/crews/outline_book_crew/config/tasks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/crewai-flows-crash-course/HEAD/6_write_a_book_with_flows/write_a_book_with_flows/src/write_a_book_with_flows/crews/outline_book_crew/config/tasks.yaml -------------------------------------------------------------------------------- /6_write_a_book_with_flows/write_a_book_with_flows/src/write_a_book_with_flows/crews/outline_book_crew/outline_crew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/crewai-flows-crash-course/HEAD/6_write_a_book_with_flows/write_a_book_with_flows/src/write_a_book_with_flows/crews/outline_book_crew/outline_crew.py -------------------------------------------------------------------------------- /6_write_a_book_with_flows/write_a_book_with_flows/src/write_a_book_with_flows/crews/write_book_chapter_crew/config/agents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/crewai-flows-crash-course/HEAD/6_write_a_book_with_flows/write_a_book_with_flows/src/write_a_book_with_flows/crews/write_book_chapter_crew/config/agents.yaml -------------------------------------------------------------------------------- /6_write_a_book_with_flows/write_a_book_with_flows/src/write_a_book_with_flows/crews/write_book_chapter_crew/config/tasks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/crewai-flows-crash-course/HEAD/6_write_a_book_with_flows/write_a_book_with_flows/src/write_a_book_with_flows/crews/write_book_chapter_crew/config/tasks.yaml -------------------------------------------------------------------------------- /6_write_a_book_with_flows/write_a_book_with_flows/src/write_a_book_with_flows/crews/write_book_chapter_crew/write_book_chapter_crew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/crewai-flows-crash-course/HEAD/6_write_a_book_with_flows/write_a_book_with_flows/src/write_a_book_with_flows/crews/write_book_chapter_crew/write_book_chapter_crew.py -------------------------------------------------------------------------------- /6_write_a_book_with_flows/write_a_book_with_flows/src/write_a_book_with_flows/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/crewai-flows-crash-course/HEAD/6_write_a_book_with_flows/write_a_book_with_flows/src/write_a_book_with_flows/main.py -------------------------------------------------------------------------------- /6_write_a_book_with_flows/write_a_book_with_flows/src/write_a_book_with_flows/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/crewai-flows-crash-course/HEAD/6_write_a_book_with_flows/write_a_book_with_flows/src/write_a_book_with_flows/types.py -------------------------------------------------------------------------------- /6_write_a_book_with_flows/write_a_book_with_flows/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/crewai-flows-crash-course/HEAD/6_write_a_book_with_flows/write_a_book_with_flows/uv.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/crewai-flows-crash-course/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/crewai-flows-crash-course/HEAD/requirements.txt --------------------------------------------------------------------------------