From 78ef49064684806ae655d64637e0c9bb3e182d3a Mon Sep 17 00:00:00 2001 From: Lorenze Jay Date: Tue, 23 Jul 2024 11:31:09 -0700 Subject: [PATCH 1/2] fixed bullet points for crew yaml annoations --- docs/how-to/Start-a-New-CrewAI-Project.md | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/docs/how-to/Start-a-New-CrewAI-Project.md b/docs/how-to/Start-a-New-CrewAI-Project.md index ed9dd7456..5ee7920e3 100644 --- a/docs/how-to/Start-a-New-CrewAI-Project.md +++ b/docs/how-to/Start-a-New-CrewAI-Project.md @@ -114,16 +114,18 @@ email_summarizer_task: ``` Use the annotations are used to properly reference the agent and task in the crew.py file. -Annotations include: -- @agent -- @task -- @crew -- @llm -- @tool -- @callback -- @output_json -- @output_pydantic -- @cache_handler + +### Annotations include: +* @agent +* @task +* @crew +* @llm +* @tool +* @callback +* @output_json +* @output_pydantic +* @cache_handler + crew.py ```py From 776c67cc0f9dbbccc74576f4cec49d85785e14d7 Mon Sep 17 00:00:00 2001 From: Lorenze Jay Date: Tue, 23 Jul 2024 11:32:25 -0700 Subject: [PATCH 2/2] clearer usage for crewai create command --- docs/how-to/Start-a-New-CrewAI-Project.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/how-to/Start-a-New-CrewAI-Project.md b/docs/how-to/Start-a-New-CrewAI-Project.md index 5ee7920e3..9fb5cb63c 100644 --- a/docs/how-to/Start-a-New-CrewAI-Project.md +++ b/docs/how-to/Start-a-New-CrewAI-Project.md @@ -16,7 +16,7 @@ We assume you have already installed CrewAI. If not, please refer to the [instal To create a new project, run the following CLI command: ```shell -$ crewai create my_project +$ crewai create ``` This command will create a new project folder with the following structure: